Update README.md

This commit is contained in:
wlkjyy 2023-08-17 14:15:52 +08:00 committed by GitHub
parent 8f089350df
commit 7ab0bcabf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,2 +1,27 @@
# dianxuan # 点选
基于孪生神经网络实现的点选识别 基于孪生神经网络实现的点选识别
## 温馨提示
该项目仅供学习研究改进点选验证码的安全性,请勿用于商用或其他带有攻击性质的业务场景中!!!
### 如何使用?
准备vgg16_weights_tf_dim_ordering_tf_kernels_notop.h5预训练权重网上可以下载到
准备一个yolo分割模型可以直接训练具体用途是让他从验证码中分割出问题和点选的字符。
安装环境我用到的是python3.10
```
pip3 install -r requirement.txt
```
准备数据集放入data中格式为 id_序号.jpg|pngid可以采用uuid序号第一张图是1第二张图是2只能两张图
开始训练
```
python train.py
```
预测
```
python predict.py
```