https://github.com/tensorly/tensorly
Revision 8d7a986327d39c031731e715f31c1cdcce1f09e6 authored by Jean Kossaifi on 14 October 2020, 12:29:09 UTC, committed by Jean Kossaifi on 14 October 2020, 12:29:09 UTC
1 parent 984e00d
Raw File
Tip revision: 8d7a986327d39c031731e715f31c1cdcce1f09e6 authored by Jean Kossaifi on 14 October 2020, 12:29:09 UTC
Refactor: kruskal tensor -> CP tensor
Tip revision: 8d7a986
meta.yaml
package:
  name: tensorly
  version: "0.4.3"

source:
  path: ../

build:
  number: 0
  noarch: python
  script: python -m pip install --no-deps --ignore-installed .

requirements:
  build:
    - python >=3.4
    - setuptools
    - pip

  run:
    - python
    - numpy
    - scipy

test:
  requires:
    - pytest
    # NumPy requires nosetests e.g. for assert_raises.....
    - nose

  commands:
    - TENSORLY_BACKEND='numpy' pytest -v $SP_DIR/tensorly

about:
  home: https://github.com/tensorly/tensorly/
  license: BSD
  summary: "Tensor learning in Python"
  description: |
    TensorLy is a Python library that aims at making tensor learning simple 
    and accessible. It allows to easily perform tensor decomposition, 
    tensor learning and tensor algebra. Its backend system allows to 
    seamlessly perform computation with NumPy, MXNet, PyTorch, TensorFlow 
    or CuPy, and run methods at scale on CPU or GPU.

back to top