Create config.pbtxt
Browse files- config.pbtxt +16 -0
config.pbtxt
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
backend: "python"
|
| 2 |
+
max_batch_size: 0 # Disable batching if not supported
|
| 3 |
+
input [
|
| 4 |
+
{
|
| 5 |
+
name: "input_array"
|
| 6 |
+
data_type: TYPE_FP32
|
| 7 |
+
dims: [3, -1, -1] # Channels, height, width
|
| 8 |
+
}
|
| 9 |
+
]
|
| 10 |
+
output [
|
| 11 |
+
{
|
| 12 |
+
name: "output_mask"
|
| 13 |
+
data_type: TYPE_UINT8 # Adjust based on actual output type
|
| 14 |
+
dims: [-1, -1] # Height, width
|
| 15 |
+
}
|
| 16 |
+
]
|