Spaces:
Runtime error
Runtime error
# Copyright (c) Meta Platforms, Inc. and affiliates. | |
# All rights reserved. | |
# | |
# This source code is licensed under the license found in the | |
# LICENSE file in the root directory of this source tree. | |
"""Metrics like CLAP score, FAD, KLD, Visqol, Chroma similarity, etc. | |
""" | |
# flake8: noqa | |
from .clap_consistency import CLAPTextConsistencyMetric, TextConsistencyMetric | |
from .chroma_cosinesim import ChromaCosineSimilarityMetric | |
from .fad import FrechetAudioDistanceMetric | |
from .kld import KLDivergenceMetric, PasstKLDivergenceMetric | |
from .rvm import RelativeVolumeMel | |
from .visqol import ViSQOL | |