https://github.com/tensorly/tensorly
Revision d53f0b25380bc177dcff8436123c4183cf370c91 authored by Jean KOSSAIFI on 20 October 2016, 15:29:49 UTC, committed by Jean KOSSAIFI on 20 October 2016, 15:29:49 UTC
1 parent d905235
Raw File
Tip revision: d53f0b25380bc177dcff8436123c4183cf370c91 authored by Jean KOSSAIFI on 20 October 2016, 15:29:49 UTC
Added Kronecker and Khatri-rao
Tip revision: d53f0b2
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