-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdescriptor.json
121 lines (121 loc) · 3.57 KB
/
descriptor.json
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "LandmarkDetect-ML-DMBL-Pred",
"container-image": {
"image": "neubiaswg5/w_landmarkdetect-ml-dmbl-pred",
"type": "singularity"
},
"schema-version": "cytomine-0.1",
"description": "Prediction phase of the DMBL Landmark Detection Algorithm",
"command-line": "python run.py CYTOMINE_HOST CYTOMINE_PUBLIC_KEY CYTOMINE_PRIVATE_KEY CYTOMINE_ID_PROJECT CYTOMINE_ID_SOFTWARE MODEL_TO_USE CYTOMINE_PREDICT_IMAGES MODEL_FILTER_SIZE MODEL_BETA MODEL_N_ITERATIONS MODEL_N_CANDIDATES",
"inputs": [
{
"id": "cytomine_host",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Cytomine host",
"set-by-server": true,
"optional": false,
"type": "String"
},
{
"id": "cytomine_public_key",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Cytomine public key",
"set-by-server": true,
"optional": false,
"type": "String"
},
{
"id": "cytomine_private_key",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Cytomine private key",
"set-by-server": true,
"optional": false,
"type": "String"
},
{
"id": "cytomine_id_project",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Cytomine project ID",
"set-by-server": true,
"optional": false,
"type": "Number"
},
{
"id": "cytomine_id_software",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Cytomine software ID",
"set-by-server": true,
"optional": false,
"type": "Number"
},
{
"id": "model_to_use",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "CytomineJob ID of the model to use",
"set-by-server": false,
"optional": false,
"type": "Domain",
"uri": "/api/job.json",
"uri-print-attribute": "id",
"uri-sort-attribute": "id"
},
{
"id": "cytomine_predict_images",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Cytomine image IDs",
"set-by-server": false,
"optional": false,
"type": "ListDomain",
"uri": "/api/project/$currentProject$/imageinstance.json?withoutLabel=true",
"uri-print-attribute": "instanceFilename",
"uri-sort-attribute": "instanceFilename"
},
{
"id": "model_filter_size",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Size of the filter",
"set-by-server": false,
"optional": false,
"default-value":1,
"type": "Number"
},
{
"id": "model_beta",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Beta",
"set-by-server": false,
"optional": false,
"default-value":0.75,
"type": "Number"
},
{
"id": "model_n_iterations",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Number of iterations",
"set-by-server": false,
"optional": false,
"default-value":3,
"type": "Number"
},
{
"id": "model_n_candidates",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Number of candidates",
"set-by-server": false,
"optional": false,
"default-value":3,
"type": "Number"
}
]
}