Object Detection
English
Chinese
legal
admin commited on
Commit
3bfe1db
1 Parent(s): 9ddec18
Files changed (2) hide show
  1. .gitignore +1 -0
  2. README.md +43 -0
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ rename.sh
README.md CHANGED
@@ -1,3 +1,46 @@
1
  ---
2
  license: mit
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ datasets:
4
+ - svhn
5
+ language:
6
+ - en
7
+ - zh
8
+ metrics:
9
+ - accuracy
10
+ pipeline_tag: object-detection
11
+ tags:
12
+ - legal
13
  ---
14
+
15
+ # 简介 Intro
16
+ 这是一种多位数门牌号识别模型,采用了基于 PyTorch 框架的深度卷积神经网络实现方案,旨在从街景图像中高效而准确地识别多位数门牌号。模型的训练数据来源于谷歌街景门牌号码数据集(SVHN),每个图像中包含一组 0-9 的阿拉伯数字。通过广泛的测试,该模型在精确度方面取得了显著成绩,达到了89%。深度卷积神经网络结构的运用使得模型能够有效地捕捉门牌号图像中的数字特征,从而实现了对多位数门牌号的精准识别,在数字识别领域为街景应用提供了可靠的技术支持。
17
+
18
+ This is a model for recognizing multi-digit house numbers, employing a deep convolutional neural network based on the PyTorch framework, designed to identify multi-digit house numbers from street view images with high efficiency and accuracy. The training data for the model comes from the Google Street View House Numbers dataset (SVHN), which includes a series of Arabic numerals from 0 to 9 in each image. The model has achieved significant results in precision, with an accuracy rate of 89% after rigorous testing. The deep convolutional neural network structure allows the model to effectively capture the characteristics of the numbers in the house number images, thus enabling accurate recognition of multi-digit house numbers. It offers dependable technical support for street view applications in the realm of digital recognition.
19
+
20
+ ## 在线体验 Demo
21
+ <https://www.modelscope.cn/studios/MuGeminorum/svhn>
22
+
23
+ ## 维护 Maintenance
24
+ ```bash
25
+ git clone [email protected]:MuGeminorum/svhn
26
+ cd svhn
27
+ ```
28
+
29
+ ## 使用 Usage
30
+ ```python
31
+ from modelscope import snapshot_download
32
+ model_dir = snapshot_download("MuGeminorum/svhn")
33
+ ```
34
+
35
+ ## 数据集 Dataset
36
+ <https://www.modelscope.cn/datasets/MuGeminorum/svhn>
37
+
38
+ ## 训练曲线 Training curve
39
+ ![](https://www.modelscope.cn/models/MuGeminorum/svhn/resolve/master/loss.jpg)
40
+
41
+ ## 镜像 Mirror
42
+ <https://www.modelscope.cn/models/MuGeminorum/svhn>
43
+
44
+ ## 参考引用 Reference
45
+ [1] <https://github.com/MuGeminorum/SVHN-Recognition><br>
46
+ [2] [Multi-digit Number Recognition from Street View Imagery using Deep Convolutional Neural Networks](http://arxiv.org/pdf/1312.6082.pdf)