├── .gitignore ├── Example.ipynb ├── README.md ├── license.txt └── tensorglue ├── __init__.py ├── engine.py ├── lib ├── __init__.py └── hosvd.py └── tools ├── __init__.py ├── movielens.py └── printing.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evfro/TensorGlue/HEAD/.gitignore -------------------------------------------------------------------------------- /Example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evfro/TensorGlue/HEAD/Example.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evfro/TensorGlue/HEAD/README.md -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evfro/TensorGlue/HEAD/license.txt -------------------------------------------------------------------------------- /tensorglue/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorglue/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evfro/TensorGlue/HEAD/tensorglue/engine.py -------------------------------------------------------------------------------- /tensorglue/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorglue/lib/hosvd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evfro/TensorGlue/HEAD/tensorglue/lib/hosvd.py -------------------------------------------------------------------------------- /tensorglue/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorglue/tools/movielens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evfro/TensorGlue/HEAD/tensorglue/tools/movielens.py -------------------------------------------------------------------------------- /tensorglue/tools/printing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evfro/TensorGlue/HEAD/tensorglue/tools/printing.py --------------------------------------------------------------------------------