Spaces:
Runtime error
Runtime error
# Copyright (C) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved. | |
# | |
# This work is made available under the Nvidia Source Code License-NC. | |
# To view a copy of this license, check out LICENSE.md | |
from .fid import compute_fid, compute_fid_data | |
from .kid import compute_kid, compute_kid_data | |
from .prdc import compute_prdc | |
from .common import compute_all_metrics, compute_all_metrics_data | |
__all__ = ['compute_fid', 'compute_fid_data', 'compute_kid', 'compute_kid_data', | |
'compute_prdc', 'compute_all_metrics', 'compute_all_metrics_data'] | |