-
Notifications
You must be signed in to change notification settings - Fork 20
*_metrics.npy的使用
Pang edited this page Mar 22, 2021
·
1 revision
# -*- coding: utf-8 -*-
# @Time : 2021/3/22
# @Author : Lart Pang
# @GitHub : https://github.com/lartpang
import numpy as np
from utils.print_formatter import formatter_for_tabulate
metrics: dict = np.load(
"path/rgbd_sod_metrics.npy", allow_pickle=True
).item()
print(
formatter_for_tabulate(
results=metrics, dataset_titlefmt="\n### {}\n"
)
)
知识来自实践!
欢迎进一步的补充和修改!