6 lines
74 B
Bash
6 lines
74 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
for i in {0..10..1}
|
||
|
do
|
||
|
python main.py --gpus 0
|
||
|
done
|