Python module for multilinear algebra and tensor factorizations
Project description
scikit-tensor is a Python module for multilinear algebra and tensor factorizations. Currently, scikit-tensor supports basic tensor operations such as folding/unfolding, tensor-matrix and tensor-vector products as well as the following tensor factorizations:
Canonical / Parafac Decomposition
Tucker Decomposition
RESCAL
DEDICOM
INDSCAL
Moreover, all operations support dense and tensors.
Note
This is a Python 3 only compatible maintenance release. It appears the development for scikit-tensor has stalled, and the project has been abandoned. This fork only supports Python 3.5 and later, and is available on PyPI as scikit-tensor-py3, for easier installation.
Issues and pull requests are welcomed, but issues relating algorithms and requests for additional algorithms may be postponed or ignored altogether. Technical (code) issues are welcomed.
Dependencies
The required dependencies to build the software are Numpy and SciPy.
Usage
Example script to decompose sensory bread data (available from http://www.models.life.ku.dk/datasets) using CP-ALS:
import logging from scipy.io.matlab import loadmat from sktensor import dtensor, cp_als # Set logging to DEBUG to see CP-ALS information logging.basicConfig(level=logging.DEBUG) # Load Matlab data and convert it to dense tensor format mat = loadmat('../data/sensory-bread/brod.mat') T = dtensor(mat['X']) # Decompose tensor using CP-ALS P, fit, itr, exectimes = cp_als(T, 3, init='random')
Installation
This package uses distutils, which is the default way of installing python modules. The use of virtual environments is recommended:
pip install scikit-tensor-py3
To install in development mode:
git clone https://github.com/evertrol/scikit-tensor-py3.git pip install -e scikit-tensor
Contributing & Development
scikit-tensor is still an extremely young project, and I’m happy for any contributions (patches, code, bugfixes, documentation, whatever) to get it to a stable and useful point. Feel free to get in touch with me via email (mnick at AT mit DOT edu) or directly via github. See also the note above.
Development is synchronized via git. Feel free to fork this project and make pull requests from that fork.
License
scikit-tensor-py3 is licensed under the GPLv3
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file scikit-tensor-py3-0.4.1.tar.gz
.
File metadata
- Download URL: scikit-tensor-py3-0.4.1.tar.gz
- Upload date:
- Size: 39.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.29.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b45de97ebd57e0213f54e891bf9a0549957eb2387f4df9f3dc3f7a50f8818b0a |
|
MD5 | b3c2f119efb41814ef56e637c4f85544 |
|
BLAKE2b-256 | cbb208cbfbd076b159de353c745e0faef51d3512998b017a37a019943fcfd187 |
File details
Details for the file scikit_tensor_py3-0.4.1-py3-none-any.whl
.
File metadata
- Download URL: scikit_tensor_py3-0.4.1-py3-none-any.whl
- Upload date:
- Size: 48.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.29.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27e9b576c712fbc0101244b33ea412fc7f5dbf0774003e6a21f7d38f6b0c6df3 |
|
MD5 | 45f2018958c10de3067792d714c7a2db |
|
BLAKE2b-256 | 339128aa13c7c056c37d53677881cdff1c7e8da097aea5c0e4cb4faafb44ce4f |