cloud-detection / config.pbtxt
truthdotphd's picture
Create config.pbtxt
22ce289 verified
raw
history blame contribute delete
334 Bytes
backend: "python"
max_batch_size: 0 # Disable batching if not supported
input [
{
name: "input_array"
data_type: TYPE_FP32
dims: [3, -1, -1] # Channels, height, width
}
]
output [
{
name: "output_mask"
data_type: TYPE_UINT8 # Adjust based on actual output type
dims: [-1, -1] # Height, width
}
]