加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
do_pred_and_eval.sh 394 Bytes
一键复制 编辑 原始数据 按行查看 历史
dongchengbo 提交于 2021-08-20 20:36 . realse code
if [ "$#" -ne 1 ]; then
echo "Usage: $0 test_collection"
exit
fi
test_collection=$1
test_file=./data/$test_collection.txt
model_path=./ckpt/mvssnet_casia.pt
save_dir=./save_out/
threshold=0.5
python inference.py --model_path $model_path --test_file $test_file --save_dir $save_dir
python evaluate.py --pred_dir $save_dir --model_name $model_path --gt_file $test_file --th $threshold
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化