forked from darwinai/pl-covidnet
-
Notifications
You must be signed in to change notification settings - Fork 3
/
covidnet.json
90 lines (90 loc) · 2.71 KB
/
covidnet.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
{
"type": "ds",
"parameters": [
{
"name": "metaname",
"type": "str",
"optional": true,
"flag": "--metaname",
"short_flag": "--metaname",
"action": "store",
"help": "Name of ckpt meta file",
"default": "model.meta",
"ui_exposed": true
},
{
"name": "imagefile",
"type": "str",
"optional": false,
"flag": "--imagefile",
"short_flag": "--imagefile",
"action": "store",
"help": "Name of image file to infer from",
"default": null,
"ui_exposed": true
},
{
"name": "in_tensorname",
"type": "str",
"optional": true,
"flag": "--in_tensorname",
"short_flag": "--in_tensorname",
"action": "store",
"help": "Name of input tensor to graph",
"default": "input_1:0",
"ui_exposed": true
},
{
"name": "out_tensorname",
"type": "str",
"optional": true,
"flag": "--out_tensorname",
"short_flag": "--out_tensorname",
"action": "store",
"help": "Name of output tensor from graph",
"default": "norm_dense_1/Softmax:0",
"ui_exposed": true
},
{
"name": "input_size",
"type": "int",
"optional": true,
"flag": "--input_size",
"short_flag": "--input_size",
"action": "store",
"help": "Size of input (ex: if 480x480, --input_size 480)",
"default": 480,
"ui_exposed": true
},
{
"name": "top_percent",
"type": "float",
"optional": true,
"flag": "--top_percent",
"short_flag": "--top_percent",
"action": "store",
"help": "Percent top crop from top of image",
"default": 0.08,
"ui_exposed": true
}
],
"icon": "",
"authors": "Jeffer Peng <[email protected]>",
"title": "COVID-Net inference for chest x-ray",
"category": "",
"description": "Plugin to ChRIS for covidnet functionalities",
"documentation": "https://github.com/FNNDSC/pl-covidnet#pl-covidnet",
"license": "AGPL",
"version": "0.2.0",
"selfpath": "/usr/local/bin",
"selfexec": "covidnet",
"execshell": "/usr/bin/python3",
"max_number_of_workers": 1,
"min_number_of_workers": 1,
"max_memory_limit": "",
"min_memory_limit": "",
"max_cpu_limit": "",
"min_cpu_limit": "",
"max_gpu_limit": 0,
"min_gpu_limit": 0
}