https://github.com/tensorly/tensorly
Revision 211fc946df49b53cf5bc1bb74d49b78fdb6bcb02 authored by Jean KOSSAIFI on 20 October 2016, 16:48:58 UTC, committed by Jean KOSSAIFI on 20 October 2016, 16:48:58 UTC
1 parent 74ac6fd
Raw File
Tip revision: 211fc946df49b53cf5bc1bb74d49b78fdb6bcb02 authored by Jean KOSSAIFI on 20 October 2016, 16:48:58 UTC
Added Tucker tensor
Tip revision: 211fc94
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