@huggingface/tasks
Version:
List of ML tasks for huggingface.co/tasks
25 lines (24 loc) • 610 B
JSON
{
"$id": "/inference/schemas/depth-estimation/input.json",
"$schema": "http://json-schema.org/draft-06/schema#",
"description": "Inputs for Depth Estimation inference",
"title": "DepthEstimationInput",
"type": "object",
"properties": {
"inputs": {
"description": "The input image data"
},
"parameters": {
"description": "Additional inference parameters for Depth Estimation",
"$ref": "#/$defs/DepthEstimationParameters"
}
},
"$defs": {
"DepthEstimationParameters": {
"title": "DepthEstimationParameters",
"type": "object",
"properties": {}
}
},
"required": ["inputs"]
}