https://github.com/tensorly/tensorly
Revision 75556ceca6d1a4af862e88d9a98923dc787742b0 authored by Aaron Meyer on 17 January 2023, 18:44:42 UTC, committed by GitHub on 17 January 2023, 18:44:42 UTC
* Test adjustments

* Fix

* Remove index_update from parafac2

* Consolidate CP tests

* Fix torch

* Black formatting

* Add durations to testing output

* More adjustments to speed up parafac2 test times

* Fix test random states

* Fix merge conflicts

* Small fixes

* Small fixes

* Update Github actions

* Fix occasional TTOI error

* Fix mxnet test

* Fix PARAFAC2 normalize factors

* Fixes and black formatting

Co-authored-by: Aaron Meyer <github@asmlab.org>
1 parent 8ff7e29
Raw File
Tip revision: 75556ceca6d1a4af862e88d9a98923dc787742b0 authored by Aaron Meyer on 17 January 2023, 18:44:42 UTC
Moderately speeds up and adds testing for CP, PARAFAC2, and Tucker (#478)
Tip revision: 75556ce
setup.cfg
[metadata]
description_file = README.rst
licence_file = LICENSE.txt

[flake8]
# References:
# https://flake8.readthedocs.io/en/latest/user/configuration.html
# https://flake8.readthedocs.io/en/latest/user/error-codes.html

# Note: there cannot be spaces after comma's here
exclude = __init__.py
ignore =
    # Extra space in brackets
    E20,
    # Multiple spaces around ","
    E231,E241,
    # Comments
    E26,
    # Import formatting
    E4,
    # Ambiguous variable names
    E741
max-line-length = 90
back to top