-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMLproject
35 lines (33 loc) · 1.15 KB
/
MLproject
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
name: hyperscanning_asd
conda_env: ibn-asd/conda.yaml
entry_points:
ibn:
parameters:
connectivity_estimator: string
actual_filename: string
shuffled_filename: string
chromophore: string
command: "python ibn-asd/ibn.py --connectivity_estimator {connectivity_estimator}
--actual_filename {actual_filename}
--shuffled_filename {shuffled_filename}
--chromophore {chromophore}"
cv:
parameters:
embedding: string
classifier: string
estimator: string
local_path: path
command: "python ibn-asd/cv.py --embedding {embedding}
--classifier {classifier}
--estimator {estimator}
--local_path {local_path}"
ood:
parameters:
embedding: string
model_source: string
estimator: string
local_path: path
command: "python ibn-asd/ood.py --embedding {embedding}
--model_source {model_source}
--estimator {estimator}
--local_path {local_path}"