https://github.com/tensorly/tensorly
Revision 58ea0fd397f607778ee5025282c5f0b6223a1cb8 authored by Jean Kossaifi on 11 April 2017, 23:43:18 UTC, committed by Jean Kossaifi on 11 April 2017, 23:43:18 UTC
Allows to perform decomposition along selected mode exclusively while
leaving the others untouched (i.e. identity factor for these).
1 parent d59fb75
Raw File
Tip revision: 58ea0fd397f607778ee5025282c5f0b6223a1cb8 authored by Jean Kossaifi on 11 April 2017, 23:43:18 UTC
Added partial Tucker decomposition
Tip revision: 58ea0fd
.travis.yml
language: python
python:
    - "3.5"
    - "3.6"
# command to install dependencies
install: 
    - pip install -r requirements.txt
    - pip install coveralls
# command to run tests
script:
    - make test-coverage
after_success:
    - coveralls
back to top