https://github.com/tensorly/tensorly
Revision 74ac6fddc2cf05ac667120b96bac8a7976c42e27 authored by Jean KOSSAIFI on 20 October 2016, 16:21:17 UTC, committed by Jean KOSSAIFI on 20 October 2016, 16:21:17 UTC
1 parent 37049cf
Raw File
Tip revision: 74ac6fddc2cf05ac667120b96bac8a7976c42e27 authored by Jean KOSSAIFI on 20 October 2016, 16:21:17 UTC
Added Kruskal tensor
Tip revision: 74ac6fd
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