This commit is contained in:
2026-08-28 14:31:13 +08:00
parent b30ca673cc
commit 1cf7320587
19 changed files with 629 additions and 57 deletions
+10
View File
@@ -187,3 +187,13 @@ func (c *cAdmin) LabelWorkbench(ctx context.Context, req *dto.AdminLabelWorkbenc
func (c *cAdmin) SaveLabel(ctx context.Context, req *dto.AdminLabelSaveReq) (*dto.AdminLabelSaveRes, error) {
return service.LabelTask.AdminLabelSave(ctx, req)
}
// VlmReview VLM 藏匿位补检(两阶段标注第二阶段;VL 与图像生成显存互斥,批量补检须在生成空闲时执行)
func (c *cAdmin) VlmReview(ctx context.Context, req *dto.AdminImageVlmReviewReq) (*dto.AdminImageVlmReviewRes, error) {
return service.LabelTask.AdminImageVlmReview(ctx, req)
}
// GenOptions 生成表单选项(物种池/场景池,config 维护)
func (c *cAdmin) GenOptions(ctx context.Context, req *dto.AdminDatasetGenOptionsReq) (*dto.AdminDatasetGenOptionsRes, error) {
return service.Dataset.AdminGenOptions(ctx, req)
}