Files
HSAP/algorithms/lane_ufld/code.embedded.bak/pytorch-auto-drive-master/autotest_llamas.sh

14 lines
409 B
Bash
Raw Normal View History

#!/bin/bash
echo experiment name: $1
echo status: $2
echo save dir: $3
data_dir=../../../../dataset/llamas/labels/valid
cd tools/llamas_evaluation/
if [ "$2" = "val" ]; then
# we can provide the valid set to evaluate models
python evaluate.py --pred_dir=../../output/valid --anno_dir=${data_dir} --exp_name=$1 --save-dir=$3
else
echo "The test set of llamas is not public available."
fi
cd ../../