Revision 29d38e697f330c7d81607d1068cbbf81a28e0617 authored by Meraj Hashemizadeh on 30 August 2021, 21:41:28 UTC, committed by Meraj Hashemizadeh on 30 August 2021, 21:41:28 UTC
1 parent 08da569
Raw File
__init__.py
"""
The :mod:`tensorly.metrics` module includes utilities to measure performance
(e.g. regression error).
"""

from .regression import RMSE, MSE
from .entropy import vonneumann_entropy, tt_vonneumann_entropy, cp_vonneumann_entropy
from .factors import congruence_coefficient
back to top