forked from PurdueDualityLab/TensorFlowModels
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_start_all.sh
More file actions
23 lines (16 loc) · 758 Bytes
/
Copy path_start_all.sh
File metadata and controls
23 lines (16 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env bash
git pull
~/experiment_start node-1 yolo train_and_eval yolo_custom yolov4/debug/512-state-test i$1 &
sleep 20m
~/experiment_start node-2 yolo train_and_eval yolo_custom yolov4/debug/512-baseline i$1 &
sleep 20m
~/experiment_start node-3 yolo train_and_eval yolo_custom yolov4/debug/512-jitter i$1 &
sleep 20m
~/experiment_start node-4 yolo train_and_eval yolo_custom yolov4/debug/512-jitter-scale i$1 &
sleep 20m
~/experiment_start node-5 yolo train_and_eval yolo_custom yolov4/debug/512-jitter-scratch i$1 &
sleep 20m
~/experiment_start node-6 yolo train_and_eval yolo_custom yolov4/debug/512-jitter-crop-scale i$1 &
sleep 20m
~/experiment_start node-7 yolo train_and_eval yolo_custom yolov4-csp/debug/512-baseline i$1 &
sleep 20m