https://github.com/tensorly/tensorly
Revision 6964bcee35e4ea9ceb30f552c0f7c7c498f69ee0 authored by Jean KOSSAIFI on 20 October 2016, 21:01:18 UTC, committed by Jean KOSSAIFI on 20 October 2016, 21:01:18 UTC
1 parent 3ec6340
Raw File
Tip revision: 6964bcee35e4ea9ceb30f552c0f7c7c498f69ee0 authored by Jean KOSSAIFI on 20 October 2016, 21:01:18 UTC
Kruskal Tensor Regression
Tip revision: 6964bce
README.md
# tensorly

Tensor learning in Python


## How to install
 
### Option 1: Easy/fast option: install with pip

Simply run
```bash
pip install git+https://github.com/JeanKossaifi/tensorly
```

### Option 2: clone the repository and install

Clone the repository and cd there:
```bash
git clone https://github.com/JeanKossaifi/tensorly
cd tensorly
```

Then install the package (here in editable mode with `-e` or equivalently `--editable`):
```bash
pip install -e .
```

## Running the tests
Testing is an essential part of this package and all functions come with uni-tests.

You can run all the tests using the `nose` package:

```bash
nosetests -v --exe --doctest-tests tensorly
```
back to top