https://github.com/tensorly/tensorly
Revision 0be6da8a4d60c5e9cecac9fd9184ae335ff232d8 authored by Jean KOSSAIFI on 20 October 2016, 18:00:20 UTC, committed by Jean KOSSAIFI on 20 October 2016, 18:00:20 UTC
1 parent 30002e0
Raw File
Tip revision: 0be6da8a4d60c5e9cecac9fd9184ae335ff232d8 authored by Jean KOSSAIFI on 20 October 2016, 18:00:20 UTC
Minor changes: moved partial_svd
Tip revision: 0be6da8
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