Object Detection
English
Chinese
legal
svhn / README.md
admin
add Maintenance
fc69e85
|
raw
history blame
1.7 kB
---
license: mit
datasets:
- svhn
language:
- en
- zh
metrics:
- accuracy
pipeline_tag: object-detection
tags:
- legal
---
# Intro
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.
## Demo
<https://huggingface.co/spaces/Genius-Society/svhn>
## Usage
```python
from huggingface_hub import snapshot_download
model_dir = snapshot_download("Genius-Society/svhn")
```
## Maintenance
```bash
GIT_LFS_SKIP_SMUDGE=1 git clone [email protected]:Genius-Society/svhn
cd svhn
```
## Dataset
<https://huggingface.co/datasets/Genius-Society/svhn>
## Training curve
![](https://www.modelscope.cn/models/Genius-Society/svhn/resolve/master/loss.jpg)
## Mirror
<https://www.modelscope.cn/models/Genius-Society/svhn>
## References
[1] <https://github.com/Genius-Society/svhn_recognition><br>
[2] [Multi-digit Number Recognition from Street View Imagery using Deep Convolutional Neural Networks](http://arxiv.org/pdf/1312.6082.pdf)