https://github.com/tensorly/tensorly
Revision 53a8be03cd1983ac6f9730d5a0ecb19adb42e32f authored by Jean Kossaifi on 16 December 2016, 20:13:34 UTC, committed by Jean Kossaifi on 16 December 2016, 20:13:34 UTC
1 parent 9af7669
Raw File
Tip revision: 53a8be03cd1983ac6f9730d5a0ecb19adb42e32f authored by Jean Kossaifi on 16 December 2016, 20:13:34 UTC
Added robust tensor PCA.
Tip revision: 53a8be0
.travis.yml
language: python
python:
    - "3.5"
# 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