Skip to content

Commit e790556

Browse files
committed
readme in english
1 parent 7fa333f commit e790556

File tree

2 files changed

+54
-1
lines changed

2 files changed

+54
-1
lines changed

README.en.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# Image_Classify_WebGUI_CIFAR10
2+
3+
**Intelligent Image Classification Web Applcation based on Convolutional Neural Networks and the CIFAR10 Dataset** : Image classification visualization interface, image classification front-end web page, image classification Demo display-Pywebio. AI artificial intelligence image classification-Pytorch. CIFAR10 dataset, small model. 100% pure Python code, lightweight, easy to reproduce.
4+
5+
[简体中文文档](./README.md)
6+
7+
[Personal website: www.bytesc.top](http://www.bytesc.top) includes online project demonstrations.
8+
9+
## Project Introduction
10+
* 1. Use pytorch to implement intelligent classification of CIFAR10 dataset images
11+
* 2. Use a small model, lightweight, with a 76% accuracy rate
12+
* 3. Use pywebio as the web visualization framework, no need for front-end language, written in pure python. Lightweight, easy to reproduce, easy to deploy
13+
14+
Network structure used
15+
![image](./readme_static/readme_img/net.png)
16+
17+
## Screenshot of the effect
18+
![image](./readme_static/readme_img/1.png)
19+
![image](./readme_static/readme_img/2.png)
20+
![image](./readme_static/readme_img/3.png)
21+
22+
## How to use
23+
Python version 3.9
24+
25+
First install dependencies
26+
> pip install -r requirement.txt
27+
28+
modelDemo.py is the project entry point, run this file to start the server
29+
> python modelDemo.py
30+
31+
Copy the link to the browser and open it
32+
![image](./readme_static/readme_img/p1.png)
33+
Click "Demo" to enter the Web interface
34+
![image](./readme_static/readme_img/p2.png)
35+
36+
After that, you can also click "Upload File" and select an image file from the example_img folder to upload and test
37+
38+
## Project structure
39+
```
40+
└─Image_Classify_WebGUI_CIFAR10
41+
├─data
42+
│ └─logs_import
43+
├─example_img
44+
├─process
45+
│ └─logs
46+
└─readme_static
47+
```
48+
* The data folder stores some static resources, including the trained model.pth
49+
* The process folder stores some process files, including the model training program, etc.
50+
* readme_static stores static resources used in the readme document
51+
* The example_img folder contains some images that can be used for testing

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Image_Classify_WebGUI_CIFAR10
22

3-
基于CIFAR10的图像分类:图像分类可视化界面,图像分类前端网页,图像分类Demo展示-Pywebio。AI人工智能图像分类-Pytorch。CIFAR10数据集,小模型。100%纯Python代码,轻量化,易复现
3+
**基于卷积神经网络(CNN)和 CIFAR10 数据集的图像智能分类**:图像分类可视化界面,图像分类前端网页,图像分类Demo展示-Pywebio。AI人工智能图像分类-Pytorch。CIFAR10数据集,小模型。100%纯Python代码,轻量化,易复现
4+
5+
[English Readme](./README.en.md)🚩
46

57
[个人网站:www.bytesc.top](http://www.bytesc.top) 包含项目在线演示。
68

0 commit comments

Comments
 (0)