Files
HSAP/algorithms/lane_ufld/code/pytorch-auto-drive-master/autotest_llamas.sh
Chengfang Lu 7c43b44c57 feat: initial HSAP platform
Huaxu Sentinel Active Safety Platform with embedded algorithm code,
Docker Compose setup, and vendored dataset scaffolds for clone-and-run.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-25 16:59:59 +08:00

14 lines
409 B
Bash

#!/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 ../../