Skip to content

Commit 2152274

Browse files
author
phelan_instill
authored
chore(pipeline): support instance segmentation task (#111)
Because - support instance segmentation task This commit - add instance segmentation task
1 parent e6b2490 commit 2152274

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

vdp/pipeline/v1alpha/pipeline.proto

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import "vdp/model/v1alpha/classification_output.proto";
1616
import "vdp/model/v1alpha/detection_output.proto";
1717
import "vdp/model/v1alpha/keypoint_output.proto";
1818
import "vdp/model/v1alpha/ocr_output.proto";
19+
import "vdp/model/v1alpha/instance_segmentation_output.proto";
1920
import "vdp/model/v1alpha/unspecified_output.proto";
2021

2122
// Pipeline represents a pipeline recipe
@@ -292,8 +293,11 @@ message TaskOutput {
292293
// The ocr output
293294
model.v1alpha.OcrOutput ocr = 5
294295
[ (google.api.field_behavior) = OUTPUT_ONLY ];
296+
// The instance segmentation output
297+
model.v1alpha.InstanceSegmentationOutput instance_segmentation = 6
298+
[ (google.api.field_behavior) = OUTPUT_ONLY ];
295299
// The unspecified task output
296-
model.v1alpha.UnspecifiedOutput unspecified = 6
300+
model.v1alpha.UnspecifiedOutput unspecified = 7
297301
[ (google.api.field_behavior) = OUTPUT_ONLY ];
298302
}
299303
}

0 commit comments

Comments
 (0)