├── .travis.yml ├── LICENSE ├── README.md ├── README.rst ├── ctensor ├── __init__.py ├── ccp_als.py ├── ccp_bcd.py ├── core.py ├── ctools.py ├── dtensor.py ├── ktensor.py ├── pyutils.py └── toydata.py ├── setup.py └── tests └── tests.py /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichson/rTensor/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichson/rTensor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichson/rTensor/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- 1 | Compressed Tensor Decomposition 2 | -------------------------------------------------------------------------------- /ctensor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichson/rTensor/HEAD/ctensor/__init__.py -------------------------------------------------------------------------------- /ctensor/ccp_als.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichson/rTensor/HEAD/ctensor/ccp_als.py -------------------------------------------------------------------------------- /ctensor/ccp_bcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichson/rTensor/HEAD/ctensor/ccp_bcd.py -------------------------------------------------------------------------------- /ctensor/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichson/rTensor/HEAD/ctensor/core.py -------------------------------------------------------------------------------- /ctensor/ctools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichson/rTensor/HEAD/ctensor/ctools.py -------------------------------------------------------------------------------- /ctensor/dtensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichson/rTensor/HEAD/ctensor/dtensor.py -------------------------------------------------------------------------------- /ctensor/ktensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichson/rTensor/HEAD/ctensor/ktensor.py -------------------------------------------------------------------------------- /ctensor/pyutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichson/rTensor/HEAD/ctensor/pyutils.py -------------------------------------------------------------------------------- /ctensor/toydata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichson/rTensor/HEAD/ctensor/toydata.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichson/rTensor/HEAD/setup.py -------------------------------------------------------------------------------- /tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichson/rTensor/HEAD/tests/tests.py --------------------------------------------------------------------------------