-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathnextflow_schema.json
More file actions
47 lines (47 loc) · 1.82 KB
/
nextflow_schema.json
File metadata and controls
47 lines (47 loc) · 1.82 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
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com/nextflow-io/hyperopt/master/nextflow_schema.json",
"title": "hyperopt pipeline parameters",
"description": "Proof-of-concept pipeline for training and evaluating machine learning models with Nextflow. Not all parameters are included in this schema, refer to the nextflow.config for more details.",
"type": "object",
"definitions": {
"pipeline_options": {
"title": "Pipeline options",
"type": "object",
"description": "",
"default": "",
"fa_icon": "fas fa-terminal",
"properties": {
"fetch_datasets": {
"type": "string",
"description": "Comma-separated list of datasets to fetch from OpenML",
"default": "wdbc",
"fa_icon": "fas fa-file-csv"
},
"train_test_splits": {
"type": "string",
"format": "file-path",
"description": "Index file of train/test splits to use for evaluation",
"fa_icon": "fas fa-file-csv"
},
"train_models": {
"type": "string",
"description": "Comma-separated list of model types to train and evaluate (any of: dummy,gb,lr,mlp,rf)",
"default": "dummy,gb,lr,mlp,rf",
"fa_icon": "fas fa-dumbbell"
},
"pretrained_models": {
"type": "string",
"format": "file-path",
"description": "Index file of pre-trained models to evaluate",
"fa_icon": "fas fa-dumbbell"
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/pipeline_options"
}
]
}