forked from usnistgov/image-classification-resnet50
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpluginInference.json
47 lines (47 loc) · 1.4 KB
/
pluginInference.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
{
"name": "WIPP Resnet50 Classification Inference Plugin",
"version": "1.0.1",
"title": "Resnet50 Classification Inference",
"author": "Michael Majurski",
"institution": "National Institute of Standards and Technology",
"repository": "https://github.com/usnistgov/image-classification-resnet50",
"citation": "\"Residual Learning for Image Recognition.\", Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian SunDeep, 10 Dec 2015. arXiv:1512.03385v1",
"description": "Inference with a Resnet50 classification model",
"containerId": "wipp/wipp-resnet50-classification-inference-plugin:1.0.1",
"inputs": [
{
"name": "image_folder",
"type": "collection",
"options": {
"format": "tiledtiff"
},
"description": "Input images to be inferenced using the plugin.",
"required": true
},
{
"name": "saved_model_filepath",
"type": "tensorflowModel",
"description": "Model to use for inferencing",
"required": true
}
],
"outputs": [
{
"name": "output_filepath",
"type": "csvCollection",
"description": "Output prediction for the plugin"
}
],
"ui": [
{
"key": "inputs.image_folder",
"title": "Image Collection: ",
"description": "Pick a collection..."
},
{
"key": "inputs.saved_model_filepath",
"title": "Trained AI Model: ",
"description": "Pick a model..."
}
]
}