2 Star 1 Fork 0

IntelligenceVision / Label-Explorer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
README.md 2.81 KB
一键复制 编辑 原始数据 按行查看 历史
代码阿尔法 提交于 2024-02-11 12:45 . README update

Label Explorer

介绍

🚀 基于 Electron 的 YOLO 标签分析与整合工具

PyPI All Downloads PyPI Package Health

作者简介

👨‍🏫 导师

曾逸夫,从事人工智能研究与开发;主研领域:计算机视觉;YOLOv8官方开源项目代码贡献人YOLOv5官方开源项目代码贡献人YOLOv5 v6.1代码贡献人YOLOv5 v6.2代码贡献人YOLOv5 v7.0代码贡献人Gradio官方开源项目代码贡献人

✨ Github:https://github.com/Zengyf-CVer

👩‍🎓 学生

邓乙华,从事计算机视觉的研究和 JavaScript 项目的开发。

Label Studio

https://github.com/HumanSignal/label-studio

对Label Studio导出的格式进行转换

Label Studio YOLO格式

├── raw_datasets							# 原始数据集
│   ├── images								# 图片集
│   │   ├── 1.jpg							# 图片名称
│   │   ├── 2.jpg							# 图片名称
│   ├── labels								# 标签集
│   │   ├── 1.txt							# 标签名称
│   │   ├── 2.txt							# 标签名称
│   ├── classes.txt							# 类别文件
│   ├── notes.json							# 类别JSON文件
raw_datasets/classes.txt
cls01
cls02
cls03
cls04
raw_datasets/notes.json
{
  "categories": [
    {
      "id": 0,
      "name": "cls01"
    },
    {
      "id": 1,
      "name": "cls02"
    },
    {
      "id": 2,
      "name": "cls03"
    },
    {
      "id": 3,
      "name": "cls04"
    }
  ],
  "info": {
    "year": 2024,
    "version": "1.0",
    "contributor": "Label Studio"
  }
}
yarn add electron --dev

安装教程

# Electron版
yarn install
yarn run start

# Python CLI版
pip install label-explorer

使用教程

Python CLI

# 使用默认参数
label-explorer

# 自定义图片路径和标签路径
label-explorer -sld path/to/labels -sid path/to/imgs

# 自定义训练集和验证集比例
label-explorer -p 0.9
label-explorer -p 0.7
label-explorer -p 0.75

# 导入Label Studio类别文件
label-explorer -lp path/to/classes.txt
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/intelligence-vision/label-explorer.git
git@gitee.com:intelligence-vision/label-explorer.git
intelligence-vision
label-explorer
Label-Explorer
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891