-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.vsh.yaml
More file actions
72 lines (68 loc) · 1.81 KB
/
config.vsh.yaml
File metadata and controls
72 lines (68 loc) · 1.81 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: run_benchmark
namespace: workflows
argument_groups:
- name: Inputs
arguments:
- name: "--input_train"
__merge__: /src/api/file_train.yaml
type: file
direction: input
required: true
- name: "--input_test"
__merge__: /src/api/file_test.yaml
type: file
direction: input
required: true
- name: "--input_solution"
__merge__: /src/api/file_solution.yaml
type: file
direction: input
required: true
- name: Outputs
arguments:
- name: "--output_scores"
type: file
required: true
direction: output
description: A yaml file containing the scores of each of the methods
default: score_uns.yaml
- name: "--output_method_configs"
type: file
required: true
direction: output
default: method_configs.yaml
- name: "--output_metric_configs"
type: file
required: true
direction: output
default: metric_configs.yaml
- name: "--output_dataset_info"
type: file
required: true
direction: output
default: dataset_uns.yaml
- name: "--output_task_info"
type: file
required: true
direction: output
default: task_info.yaml
- name: Methods
arguments:
- name: "--method_ids"
type: string
multiple: true
description: A list of method ids to run. If not specified, all methods will be run.
resources:
- type: nextflow_script
path: main.nf
entrypoint: run_wf
- type: file
path: /_viash.yaml
dependencies:
- name: utils/extract_uns_metadata
repository: openproblems
- name: control_methods/true_labels
- name: methods/logistic_regression
- name: metrics/accuracy
runners:
- type: nextflow