├── .gitignore ├── LICENSE ├── README.md ├── data ├── README.md └── ofc-1 │ └── README.md ├── matlab ├── README.md ├── cp_demo.m ├── img │ ├── diff_mag_factors.png │ ├── est.png │ ├── low_noise.png │ └── true.png └── viz_ktensor.m └── python └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | data/ofc-1/*/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahwillia/tensor-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahwillia/tensor-demo/HEAD/README.md -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahwillia/tensor-demo/HEAD/data/README.md -------------------------------------------------------------------------------- /data/ofc-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahwillia/tensor-demo/HEAD/data/ofc-1/README.md -------------------------------------------------------------------------------- /matlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahwillia/tensor-demo/HEAD/matlab/README.md -------------------------------------------------------------------------------- /matlab/cp_demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahwillia/tensor-demo/HEAD/matlab/cp_demo.m -------------------------------------------------------------------------------- /matlab/img/diff_mag_factors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahwillia/tensor-demo/HEAD/matlab/img/diff_mag_factors.png -------------------------------------------------------------------------------- /matlab/img/est.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahwillia/tensor-demo/HEAD/matlab/img/est.png -------------------------------------------------------------------------------- /matlab/img/low_noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahwillia/tensor-demo/HEAD/matlab/img/low_noise.png -------------------------------------------------------------------------------- /matlab/img/true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahwillia/tensor-demo/HEAD/matlab/img/true.png -------------------------------------------------------------------------------- /matlab/viz_ktensor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahwillia/tensor-demo/HEAD/matlab/viz_ktensor.m -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahwillia/tensor-demo/HEAD/python/README.md --------------------------------------------------------------------------------