This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import subprocess | |
import os | |
import numpy as np | |
import time | |
# number of procs | |
file = 'download.py' | |
sleep_time = 5 | |
proc_N = 8 | |
# gpu_id = np.array([0,1,2,3,0,1,2,3,0,1,2,3]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
################################################################################### | |
## Download (EPIC) | |
################################################################################### | |
import os | |
import math | |
import argparse | |
# params | |
save_dir = '/home/fanyix/code/lfb/data/epic/downloads' |