Create model.json
Browse files- model.json +28 -0
model.json
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "cifar10-classifier",
|
3 |
+
"description": "A TensorFlow model for classifying images from the CIFAR-10 dataset.",
|
4 |
+
"author": "Your Name",
|
5 |
+
"framework": "TensorFlow",
|
6 |
+
"license": "MIT",
|
7 |
+
"inputs": [
|
8 |
+
{
|
9 |
+
"name": "image",
|
10 |
+
"description": "An image from the CIFAR-10 dataset, represented as a 32x32x3 tensor.",
|
11 |
+
"type": "tensor",
|
12 |
+
"shape": [32, 32, 3],
|
13 |
+
"format": "image"
|
14 |
+
}
|
15 |
+
],
|
16 |
+
"outputs": [
|
17 |
+
{
|
18 |
+
"name": "label",
|
19 |
+
"description": "The predicted class label of the input image.",
|
20 |
+
"type": "integer"
|
21 |
+
},
|
22 |
+
{
|
23 |
+
"name": "probability",
|
24 |
+
"description": "The probability of the predicted class label.",
|
25 |
+
"type": "float"
|
26 |
+
}
|
27 |
+
]
|
28 |
+
}
|