https://github.com/tensorly/tensorly
Revision a360a82666442bc575eac999204ed4b5c8560922 authored by JeanKossaifi on 24 October 2016, 22:28:13 UTC, committed by JeanKossaifi on 24 October 2016, 22:28:13 UTC
1 parent a7b3723
Raw File
Tip revision: a360a82666442bc575eac999204ed4b5c8560922 authored by JeanKossaifi on 24 October 2016, 22:28:13 UTC
FIX: corrected example plot_tensor
Tip revision: a360a82
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