https://github.com/tensorly/tensorly
Revision 60bad71b9e684035e65575cef12c12143f6cc888 authored by Jean KOSSAIFI on 20 October 2016, 18:01:00 UTC, committed by Jean KOSSAIFI on 20 October 2016, 18:01:00 UTC
1 parent 7f9d41c
Raw File
Tip revision: 60bad71b9e684035e65575cef12c12143f6cc888 authored by Jean KOSSAIFI on 20 October 2016, 18:01:00 UTC
Tucker decomposition
Tip revision: 60bad71
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