https://github.com/tensorly/tensorly
Revision 3a74cd9f53cb39667c66ce1abb8ab5cb2f84f761 authored by Jean Kossaifi on 09 March 2017, 15:23:16 UTC, committed by Jean Kossaifi on 09 March 2017, 15:23:16 UTC
1 parent 9c314e2
Raw File
Tip revision: 3a74cd9f53cb39667c66ce1abb8ab5cb2f84f761 authored by Jean Kossaifi on 09 March 2017, 15:23:16 UTC
Function to add noise to tensors
Tip revision: 3a74cd9
.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