https://github.com/tensorly/tensorly
Revision cfb74852cb0c649285404d9acedb8abc7b54ef07 authored by JeanKossaifi on 22 October 2016, 00:04:41 UTC, committed by JeanKossaifi on 22 October 2016, 10:57:37 UTC
1 parent cf0d771
Raw File
Tip revision: cfb74852cb0c649285404d9acedb8abc7b54ef07 authored by JeanKossaifi on 22 October 2016, 00:04:41 UTC
Updated setup file
Tip revision: cfb7485
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/tensorly/tensorly
```

### Option 2: clone the repository and install

Clone the repository and cd there:
```bash
git clone https://github.com/tensorly/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