# 多文种手写体识别 **Repository Path**: jiang-shaochen/HandWriting-Recognition ## Basic Information - **Project Name**: 多文种手写体识别 - **Description**: 一个简单的手写体识别 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2025-03-11 - **Last Updated**: 2025-04-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 多文种手写体识别 #### 介绍 一个简单的手写体识别 #### 使用说明 1. 安装依赖 ``` pip install -r requirements.txt ``` 2. 下载minist数据集,并把数据集转化成图片格式 ``` python data_preparation.py ``` 多语种数据集格式如下 ``` handwriting_data/ └── digit/ ├── 0/ ├── 1/ └── ... └── english/ ├── A/ ├── B/ └── ... └── chinese/ ├── 你/ ├── 好/ └── ... ``` 3. 训练 ``` python train.py ```