generated from csinva/cookiecutter-ml-research
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path00_sub_resp_decomp.py
38 lines (36 loc) · 1.27 KB
/
00_sub_resp_decomp.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import os
from os.path import dirname, join, expanduser
import sys
from imodelsx import submit_utils
path_to_file = os.path.dirname(os.path.abspath(__file__))
repo_dir = dirname(dirname(os.path.abspath(__file__)))
sys.path.append(repo_dir)
params_shared_dict = {
# 'subject': [f'UTS0{k}' for k in range(1, 9)],
'subject': [f'UTS0{k}' for k in range(1, 4)],
}
params_coupled_dict = {
}
# Args list is a list of dictionaries
# If you want to do something special to remove some of these runs, can remove them before calling run_args_list
args_list = submit_utils.get_args_list(
params_shared_dict=params_shared_dict,
params_coupled_dict=params_coupled_dict,
)
script_name = join(repo_dir, 'experiments', '01_calc_resp_decomp.py')
amlt_kwargs_cpu = {
'amlt_file': join(repo_dir, 'scripts', 'launch_cpu.yaml'),
# E4ads_v5 (30 GB), E8ads_v5 (56 GB), E16ads_v5 (120GB), E32ads_v5 (240GB), E64ads_v5 (480 GB)
'sku': 'E64ads_v5',
# 'sku': 'E32ads_v5',
'mnt_rename': ('/home/chansingh/mntv1', '/mntv1'),
}
submit_utils.run_args_list(
args_list,
script_name=script_name,
# amlt_kwargs=amlt_kwargs_cpu,
n_cpus=3,
repeat_failed_jobs=True,
shuffle=True,
cmd_python=f'export HF_TOKEN={open(expanduser("~/.HF_TOKEN"), "r").read().strip()}; python',
)