CoolFace
Datasetpublic

gabriellidenor/svhn-digit-recognition

๐Ÿ”ข Street View House Numbers (SVHN) Digit Recognition Pipeline This repository hosts the dataset layer and acts as an integration hub for a modular, production-ready machine learning pipeline. The project is designed to classify cropped house numbers from street-view imagery using deep learning architectures. ๐Ÿ“‚ Project Structure svhn_digit_recognition/ โ”‚ โ”œโ”€โ”€ data/ โ”‚ โ”œโ”€โ”€ raw/ # Original, immutable data dump (.h5 file) โ”‚ โ””โ”€โ”€ processed/โ€ฆ See the full description on the dataset page: https://huggingface.co/datasets/gabriellidenor/svhn-digit-recognition.

sourceHugging Facemitupdated 4mo agoView on Hugging Face
0likes37downloads
Dataset Card

๐Ÿ”ข Street View House Numbers (SVHN) Digit Recognition Pipeline

This repository hosts the dataset layer and acts as an integration hub for a modular, production-ready machine learning pipeline. The project is designed to classify cropped house numbers from street-view imagery using deep learning architectures.

๐Ÿ“‚ Project Structure

text
svhn_digit_recognition/
โ”‚
โ”œโ”€โ”€ data/
โ”‚   โ”œโ”€โ”€ raw/                    # Original, immutable data dump (.h5 file)
โ”‚   โ””โ”€โ”€ processed/              # Final canonical datasets used for modeling
โ”‚
โ”œโ”€โ”€ notebooks/
โ”‚   โ””โ”€โ”€ exploration.ipynb       # Kept for data visualization & initial testing
โ”‚
โ”œโ”€โ”€ src/                        # Main source code directory
โ”‚   โ”œโ”€โ”€ __init__.py
โ”‚   โ”œโ”€โ”€ data_loader.py          # Scripts to read, split, and normalize images
โ”‚   โ”œโ”€โ”€ models.py               # Houses Neural Network and CNN model definitions
โ”‚   โ””โ”€โ”€ evaluate.py             # Classification reports, confusion matrices, metrics
โ”‚
โ”œโ”€โ”€ config.py                   # Centralized hyperparameters (epochs, batch size, paths)
โ”œโ”€โ”€ train.py                    # Main pipeline orchestrator to run the experiment
โ””โ”€โ”€ requirements.txt            # Package dependencies (TensorFlow, scikit-learn, h5py)