https://github.com/tensorly/tensorly
Revision 7ead4a71a6bd7af3597b067a421bd02d6a2d5769 authored by JeanKossaifi on 23 October 2016, 18:51:03 UTC, committed by JeanKossaifi on 23 October 2016, 18:51:03 UTC
Useful for testing (e.g. regression models)
1 parent aaae58c
Raw File
Tip revision: 7ead4a71a6bd7af3597b067a421bd02d6a2d5769 authored by JeanKossaifi on 23 October 2016, 18:51:03 UTC
Utility function to create specific images.
Tip revision: 7ead4a7
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