https://github.com/tensorly/tensorly
Revision c47394d664d0a76b910530da26bca9144e9785d4 authored by oppentech on 21 April 2017, 06:58:32 UTC, committed by oppentech on 21 April 2017, 06:58:32 UTC
1 parent d59fb75
Raw File
Tip revision: c47394d664d0a76b910530da26bca9144e9785d4 authored by oppentech on 21 April 2017, 06:58:32 UTC
Improved partial_svd by omitting full svd matrices when possible
Tip revision: c47394d
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