From fb278e206e0a6f06b26d38529bebde4b546c5fb6 Mon Sep 17 00:00:00 2001 From: Jerry Yan <792602257@qq.com> Date: Mon, 19 Jan 2026 11:20:29 +0800 Subject: [PATCH] =?UTF-8?q?doc(db):=20=E6=9B=B4=E6=96=B0=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E5=BA=93=E5=88=9D=E5=A7=8B=E5=8C=96=E8=84=9A=E6=9C=AC=E6=B3=A8?= =?UTF-8?q?=E9=87=8A=E8=AF=B4=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 为音频语音处理模块添加调试状态注释 - 将聊天评估模块标记为暂未调试完成 - 为计算机视觉模块添加调试状态注释 - 将结构化数据模块标记为暂未调试完成 - 为时间序列模块添加调试状态注释 - 将视频处理模块标记为暂未调试完成 --- scripts/db/data-annotation-init.sql | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/scripts/db/data-annotation-init.sql b/scripts/db/data-annotation-init.sql index 14d18b2..825e413 100644 --- a/scripts/db/data-annotation-init.sql +++ b/scripts/db/data-annotation-init.sql @@ -95,8 +95,10 @@ DELETE FROM t_dm_annotation_templates WHERE built_in = 1; -- ============================================= -- 1. 音频/语音处理 (Audio/Speech Processing) +-- [已注释] 以下模板暂未调试完成 -- ============================================= +/* -- 1.1 自动语音识别(分段) INSERT INTO t_dm_annotation_templates ( id, name, description, data_type, labeling_type, @@ -316,11 +318,14 @@ INSERT INTO t_dm_annotation_templates ( 1, '1.0.0' ); +*/ -- ============================================= -- 2. 聊天评估 (Chat) +-- [已注释] 以下模板暂未调试完成 -- ============================================= +/* -- 2.1 聊天机器人评估 INSERT INTO t_dm_annotation_templates ( id, name, description, data_type, labeling_type, @@ -494,11 +499,14 @@ INSERT INTO t_dm_annotation_templates ( 1, '1.0.0' ); +*/ -- ============================================= -- 3. 计算机视觉 (Computer Vision) +-- [已注释] 以下模板暂未调试完成 -- ============================================= +/* -- 3.1 图像描述 INSERT INTO t_dm_annotation_templates ( id, name, description, data_type, labeling_type, @@ -752,6 +760,7 @@ INSERT INTO t_dm_annotation_templates ( 1, '1.0.0' ); +*/ -- ============================================= -- 4. 自然语言处理 (NLP) @@ -1180,8 +1189,10 @@ INSERT INTO t_dm_annotation_templates ( -- ============================================= -- 7. 结构化数据 (Structured Data) +-- [已注释] 以下模板暂未调试完成 -- ============================================= +/* -- 7.1 PDF分类 INSERT INTO t_dm_annotation_templates ( id, name, description, data_type, labeling_type, @@ -1245,11 +1256,14 @@ INSERT INTO t_dm_annotation_templates ( 1, '1.0.0' ); +*/ -- ============================================= -- 8. 时间序列 (Time Series) +-- [已注释] 以下模板暂未调试完成 -- ============================================= +/* -- 8.1 异常检测 INSERT INTO t_dm_annotation_templates ( id, name, description, data_type, labeling_type, @@ -1309,11 +1323,14 @@ INSERT INTO t_dm_annotation_templates ( 1, '1.0.0' ); +*/ -- ============================================= -- 9. 视频处理 (Videos) +-- [已注释] 以下模板暂未调试完成 -- ============================================= +/* -- 9.1 视频分类 INSERT INTO t_dm_annotation_templates ( id, name, description, data_type, labeling_type, @@ -1405,6 +1422,7 @@ INSERT INTO t_dm_annotation_templates ( 1, '1.0.0' ); +*/ -- ============================================= -- 10. 对话AI (Conversational AI)