https://github.com/tensorly/tensorly
Revision b1f90776bd41b6319818f65aba5536b81e8b5c8d authored by Jean Kossaifi on 23 April 2019, 13:28:48 UTC, committed by Jean Kossaifi on 23 April 2019, 13:28:48 UTC
    Now kruskal_tensor should always be (weights, factors)
1 parent 47028b7
Raw File
Tip revision: b1f90776bd41b6319818f65aba5536b81e8b5c8d authored by Jean Kossaifi on 23 April 2019, 13:28:48 UTC
FIX kruskal_tensor
Tip revision: b1f9077
Makefile
# Automate testing etc
BACKEND?='numpy'

all: install test

install:
	pip install -e .

test:
	TENSORLY_BACKEND=$(BACKEND) pytest -v tensorly

test-all:
	TENSORLY_BACKEND='mxnet' pytest -v tensorly
	TENSORLY_BACKEND='numpy' pytest -v tensorly
	TENSORLY_BACKEND='pytorch' pytest -v tensorly

test-coverage:
	TENSORLY_BACKEND=$(BACKEND) pytest -v --cov tensorly tensorly

back to top