https://github.com/tensorly/tensorly
Raw File
Tip revision: 37049cf2f7dfc11c85aa71d1c454dbb79d9b1df7 authored by Jean KOSSAIFI on 20 October 2016, 16:01:53 UTC
Added n_mode_product
Tip revision: 37049cf
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