File size: 704 Bytes
7610694 | 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 | {
"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"
}
]
}
|