mirror of https://github.com/WongKinYiu/yolov7.git
9 lines
326 B
Bash
9 lines
326 B
Bash
#!/bin/bash
|
|
source /home/hanoch/.virtualenvs/tir_od/bin/activate
|
|
cp -rp /home/hanoch/projects/tir_od/runs/train/* /mnt/Data/hanoch/runs/train/
|
|
if [ -z $1 ] ; then
|
|
python -u /home/hanoch/projects/tir_od/yolov7/tools/merge_results.py
|
|
else
|
|
python -u /home/hanoch/projects/tir_od/yolov7/tools/merge_results.py --path "$1"
|
|
fi
|