generated from csinva/cookiecutter-ml-research
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path07_sub_eng1000.py
51 lines (48 loc) · 1.75 KB
/
07_sub_eng1000.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
39
40
41
42
43
44
45
46
47
48
49
50
51
from neuro.features.feat_select import get_alphas
import os
from os.path import dirname, join, expanduser
import sys
from imodelsx import submit_utils
from neuro.features.questions.gpt4 import QS_HYPOTHESES, QS_HYPOTHESES_COMPUTED
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 = {
# things to average over
'use_extract_only': [0],
'pc_components': [100],
'ndelays': [8],
# things to change
'use_test_setup': [0],
'save_dir': ['/home/chansingh/mntv1/deep-fMRI/encoding/aug16_eng1000'],
'subject': ['UTS01', 'UTS02', 'UTS03', 'UTS04', 'UTS05', 'UTS06', 'UTS07', 'UTS08'],
'feature_space': ['eng1000'],
}
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', '02_fit_encoding.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',
# 'sku': 'E16ads_v5',
'sku': 'E8ads_v5',
'mnt_rename': ('/home/chansingh/mntv1', '/mntv1'),
}
submit_utils.run_args_list(
args_list,
script_name=script_name,
# unique_seeds='seed',
# amlt_kwargs=amlt_kwargs_cpu,
n_cpus=4,
# actually_run=False,
# repeat_failed_jobs=True,
shuffle=True,
cmd_python=f'export HF_TOKEN={open(expanduser("~/.HF_TOKEN"), "r").read().strip()}; python',
)