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
Makefile
# Automate testing etc

NOSETESTS ?= nosetests


all: install test

install:
	pip install -e .

test-coverage:
	nosetests -v --exe --doctest-tests --with-coverage --cover-package=tensorly tensorly

test:
	nosetests -v --exe --doctest-tests tensorly
back to top