Spaces:
Running
on
Zero
Running
on
Zero
File size: 423 Bytes
46861c5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
export output_results=$1
python3 transfer.py --output_path $output_results
for p in \
"android_detailed_caption_box" \
"multipanel_detailed_caption_box" \
"natural_detailed_caption_box" \
"ocr_doc_detailed_caption_box" \
"ocr_spotting_detailed_caption_box" \
"web_detailed_caption_box"
do
python3 eval_gpt.py --phase $p
python3 summarize_gpt_score.py --dir result
rm -fr result/*
done
|