Token导航 LogoToken导航TokenDH.com
效率权限需确认clawhub未标认证来源可访问clear审计提醒

data-labeling-studio数据标签工作室

Agent Skill

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。它适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。

总安装

1,776

周安装

74

GitHub Stars

公开资料未说明

下载量

592
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:data-labeling-studio(数据标签工作室)
来源仓库:https://github.com/kaiyuelv/data-labeling-studio
安装命令:
openclaw skills install data-labeling-studio
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install data-labeling-studio

简介

用于通过主动学习、质量控制和导出标记数据集来注释图像、文本、音频和视频的智能工具包。

SKILL.md

Data Labeling Studio

Metadata

  • Name: data-labeling-studio
  • Display Name: Data Labeling Studio | 数据标注工作室
  • Description:

- EN: Intelligent data labeling and annotation toolkit supporting image, text, audio, and video with active learning and quality control. - ZH: 智能数据标注和注释工具包,支持图像、文本、音频和视频,包含主动学习和质量控制。

  • Version: 1.0.0
  • Author: Kimi Claw
  • Tags: data-labeling, annotation, image-annotation, text-annotation, active-learning, quality-control, dataset, ml-training
  • Category: Data Processing
  • Icon: 🏷️

Capabilities

Actions

image_annotate

Perform image annotation

  • image_dir: Image directory path (string, required)
  • annotation_type: Type of annotation (string, required) - bounding_box, polygon, keypoint, segmentation
  • labels: Label categories (array, required)
  • output_format: Output format (string) - coco, pascal_voc, yolo
  • active_learning: Enable active learning suggestions (boolean, default: true)

text_annotate

Perform text annotation

  • text_data: Text data source (string/object, required)
  • annotation_task: Task type (string, required) - classification, ner, sentiment, summarization
  • labels: Label categories (array, required)
  • output_format: Output format (string) - json, csv, spacy

audio_annotate

Perform audio annotation

  • audio_dir: Audio directory path (string, required)
  • annotation_type: Type (string, required) - transcription, speaker_id, emotion, event
  • segment_duration: Segment duration in seconds (float, default: 5.0)

video_annotate

Perform video annotation

  • video_path: Video file path (string, required)
  • annotation_type: Type (string, required) - object_tracking, action_recognition, scene_detection
  • frame_sample_rate: Frame sampling rate (int, default: 1)

quality_check

Check annotation quality and consistency

  • annotations: Annotation file path (string, required)
  • ground_truth: Ground truth file path (string, optional)
  • metrics: Quality metrics (array) - iou, accuracy, consistency, coverage

dataset_export

Export labeled dataset to ML format

  • annotations: Annotation source (string, required)
  • format: Target format (string, required) - coco, yolo, tfrecord, huggingface
  • output_dir: Output directory (string, required)
  • split_ratios: Train/val/test split (object) - {train: 0.8, val: 0.1, test: 0.1}

Requirements

  • Python 3.8+
  • Pillow >= 10.0.0 (for image processing)
  • OpenCV >= 4.8.0 (for image/video annotation)
  • NumPy >= 1.24.0
  • Pandas >= 2.0.0
  • LabelImg >= 1.8.0 (optional)
  • Librosa >= 0.10.0 (for audio processing)
  • scikit-learn >= 1.3.0 (for active learning)

Examples

Image Annotation

from labeling_studio import ImageAnnotator

# Initialize annotator
annotator = ImageAnnotator(
    annotation_type="bounding_box",
    labels=["person", "car", "dog", "cat"],
    output_format="coco"
)

# Annotate images with active learning
annotator.annotate(
    image_dir="./images",
    output_file="./annotations/coco.json",
    active_learning=True  # AI suggests uncertain samples
)

# Export to YOLO format
annotator.export("./annotations", format="yolo")

Text Annotation

from labeling_studio import TextAnnotator

# NER annotation
annotator = TextAnnotator(
    annotation_task="ner",
    labels=["PERSON", "ORG", "LOC", "DATE"]
)

# Annotate from file
annotations = annotator.annotate(
    text_data="./data/corpus.txt",
    output_file="./annotations/ner.json"
)

Quality Check

from labeling_studio import QualityChecker

# Check annotation quality
checker = QualityChecker()
report = checker.check(
    annotations="./annotations/coco.json",
    ground_truth="./annotations/ground_truth.json",
    metrics=["iou", "consistency", "coverage"]
)

print(f"Average IoU: {report['iou']:.2f}")
print(f"Consistency Score: {report['consistency']:.2f}")
print(f"Coverage: {report['coverage']:.2f}")

Scripts

  • scripts/annotate_images.py: 图像标注工具
  • scripts/annotate_text.py: 文本标注工具
  • scripts/annotate_audio.py: 音频标注工具
  • scripts/annotate_video.py: 视频标注工具
  • scripts/quality_check.py: 质量检查工具
  • scripts/export_dataset.py: 数据集导出工具

Installation

pip install -r requirements.txt

Usage

# Image annotation with active learning
python scripts/annotate_images.py --input ./images --type bbox --labels person,car --format coco

# Text NER annotation
python scripts/annotate_text.py --input ./texts.txt --task ner --labels PERSON,ORG,LOC

# Quality check
python scripts/quality_check.py --annotations ./coco.json --ground-truth ./gt.json

# Export to YOLO
python scripts/export_dataset.py --input ./coco.json --format yolo --output ./yolo_dataset

License

MIT License

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

89.62%
按下载量换算531

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills