| { | |
| "name": "cifar10-classifier", | |
| "description": "A TensorFlow model for classifying images from the CIFAR-10 dataset.", | |
| "author": "Your Name", | |
| "framework": "TensorFlow", | |
| "license": "MIT", | |
| "inputs": [ | |
| { | |
| "name": "image", | |
| "description": "An image from the CIFAR-10 dataset, represented as a 32x32x3 tensor.", | |
| "type": "tensor", | |
| "shape": [32, 32, 3], | |
| "format": "image" | |
| } | |
| ], | |
| "outputs": [ | |
| { | |
| "name": "label", | |
| "description": "The predicted class label of the input image.", | |
| "type": "integer" | |
| }, | |
| { | |
| "name": "probability", | |
| "description": "The probability of the predicted class label.", | |
| "type": "float" | |
| } | |
| ] | |
| } | |