https://github.com/tensorly/tensorly
Revision dd5db839114ecd2bc036047d7ee645eeeedce7d4 authored by Jean KOSSAIFI on 20 October 2016, 16:58:45 UTC, committed by Jean KOSSAIFI on 20 October 2016, 16:58:45 UTC
1 parent 047a499
Raw File
Tip revision: dd5db839114ecd2bc036047d7ee645eeeedce7d4 authored by Jean KOSSAIFI on 20 October 2016, 16:58:45 UTC
Fast partial SVD
Tip revision: dd5db83
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