https://github.com/tensorly/tensorly
Revision 33ad3bee5930db45c836cdfe656150a0cf5b8738 authored by JeanKossaifi on 24 October 2016, 11:10:38 UTC, committed by JeanKossaifi on 24 October 2016, 11:10:38 UTC
1 parent 7ead4a7
Raw File
Tip revision: 33ad3bee5930db45c836cdfe656150a0cf5b8738 authored by JeanKossaifi on 24 October 2016, 11:10:38 UTC
Added examples
Tip revision: 33ad3be
README.md
# TensorLy

Tensor Learning in Python.


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

Simply run
```bash
pip install -U tensorly
```
That's it!

### 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 .
```

Alternatively, you can pip install from the git repository:
```bash
pip install git+https://github.com/tensorly/tensorly
```

## 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