UNPKG

@huggingface/tasks

Version:
25 lines (24 loc) 610 B
{ "$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"] }