https://github.com/tensorly/tensorly
Raw File
Tip revision: 30002e003174dc4b694d8f0ce5d0923b33dc525b authored by Jean KOSSAIFI on 20 October 2016, 17:41:06 UTC
Candecomp-Parafac decomposition
Tip revision: 30002e0
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