https://github.com/tensorly/tensorly
Revision 8f95f2846a1b14ab8544c7c224c3a76d67dd32f1 authored by Jean KOSSAIFI on 20 October 2016, 21:17:41 UTC, committed by Jean KOSSAIFI on 20 October 2016, 21:17:41 UTC
1 parent c042fad
Raw File
Tip revision: 8f95f2846a1b14ab8544c7c224c3a76d67dd32f1 authored by Jean KOSSAIFI on 20 October 2016, 21:17:41 UTC
Tucker tensor regression
Tip revision: 8f95f28
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