This commit is contained in:
2026-08-27 11:04:56 +08:00
parent 0ca8f4c3ab
commit bb7bac3dee
30 changed files with 171 additions and 260 deletions
+2 -4
View File
@@ -2,16 +2,14 @@ package entity
import "github.com/gogf/gf/v2/os/gtime"
// LabelTask 标注任务:RF-DETR 预标注批量推理进度;候选框存
// datasets/<数据集名>/boxes.jsonYOLO 归一化 xywh + 置信度 + 建议类别)。
// Filenames 为选中图片列表(JSON 数组串;空 = 全量扫描)。
// LabelTask 标注任务:RF-DETR 预标注批量推理进度;标注结果直写
// dataset_image.labels_json,不落文件。Filenames 为选中图片列表(JSON 数组串;空 = 全量扫描)。
type LabelTask struct {
Id int64 `json:"id" orm:"id" description:"自增主键"`
DatasetId int64 `json:"datasetId" orm:"dataset_id" description:"所属数据集"`
Status string `json:"status" orm:"status" description:"running|done"`
Total int `json:"total" orm:"total" description:"待标注图片数"`
Done int `json:"done" orm:"done" description:"已处理数"`
BoxesFile string `json:"boxesFile" orm:"boxes_file" description:"候选框 JSON 相对路径"`
Filenames string `json:"filenames" orm:"filenames" description:"选中图片JSON数组(空=全量)"`
Error string `json:"error" orm:"error" description:"失败原因(部分失败/全部失败)"`
CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:"创建时间"`