https://github.com/xddcore/dataassitant
DataAssitant,一个基于Python的神经网络数据集预处理软件
https://github.com/xddcore/dataassitant
Last synced: about 1 year ago
JSON representation
DataAssitant,一个基于Python的神经网络数据集预处理软件
- Host: GitHub
- URL: https://github.com/xddcore/dataassitant
- Owner: xddcore
- License: gpl-3.0
- Created: 2020-05-17T05:18:12.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-10-03T22:01:41.000Z (almost 3 years ago)
- Last Synced: 2025-04-01T10:23:17.442Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 38.1 KB
- Stars: 6
- Watchers: 1
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# `DataAssitant`项目说明
## 项目背景
大一在sipeed实习(2020.3-2020.7月)时所编著,因为Maxihub后端自动训练脚本也是我在开发,所以编写一个能够规范产出数据集的预处理软件非常重要。大大提高用户使用Maixhub时的使用体验。
## Note:
由于本数据集预处理软件已于2020年停止维护,Maxihub将不在支持它所处理的数据格式。请大家直接使用Maxihub提供的在线数据集预处理。
## 开发环境建立
```bash
conda create -n dataassitant python=3.7.4
conda activate dataassitant
pip install -r requirements.txt
```
---
## 代码运行
```bash
python DataAssistant.py
```
---
## 打包为.exe文件
### 打包工具版本
```
pyinstaller==3.6
```
### 打包命令
```python
pyinstaller -F -w -i sipeed.ico DataAssistant.py
```
### PS👀️
0. 打包请在纯净python环境下进行,否则将会有很多不必要的第三方包被打包,从而导致生成的.exe文件过大
1. 打包目录下需要包含如下文件:
> 1. DataAssistant.py
> 2. sipeed.ico
> 3. config.ini
---
## 版本特性说明:
> V1.0 :支持目标分类数据集的预处理
> V1.1 :新增目标检测数据集预处理
> V1.2 :新增目标检测数据集预自动标注(Siammask)
---
## Bug汇总:
- [x] 处理中程序出现未响应.(解决方案:新进程解决)
- [ ] 仅支持在Windows10以下运行(实测windows7无法运行)
---
## 打包好的zip下载:
本项目 Release页面
## K210数据集自动收集脚本
> 1.Data_Collection_Assitant(Classification).py 目标分类数据集自动收集
> 2.Data_Collection_Assitant(ObjectDection).py 目标检测数据集自动收集