https://github.com/tensorly/tensorly
Revision a7b3723caa9581b976f3a5cca5084bfd33807ef9 authored by JeanKossaifi on 24 October 2016, 22:25:19 UTC, committed by JeanKossaifi on 24 October 2016, 22:25:19 UTC
1 parent f116292
Raw File
Tip revision: a7b3723caa9581b976f3a5cca5084bfd33807ef9 authored by JeanKossaifi on 24 October 2016, 22:25:19 UTC
DOC: added draft for tensor decomposition + minor changes.
Tip revision: a7b3723
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