Skip to main content

Alpha Hybrid CNN model for Image classification tasks

Project description

AlphaNetworks

PyPI Version Python Versions License

AlphaNetworks is a Python package designed to train advanced image classification models using hybrid architectures like ResNet50V2 and DenseNet169. It provides a seamless interface for training, evaluating, and deploying deep learning models.


Table of Contents


Introduction

AlphaNetworks combines state-of-the-art architectures to offer superior performance in image classification tasks. By leveraging pre-trained weights and advanced optimization techniques, it ensures robust feature extraction and better generalization.


Features

  • Hybrid Architecture: Integrates ResNet50V2 and DenseNet169.
  • Data Augmentation: Enhances model robustness.
  • CLI Support: Train and configure models via the command line.
  • Customizable Hyperparameters: Adjust learning rate, batch size, etc.
  • Download Pretrained Weights: Automatically fetch required weights.

Installation

Prerequisites

  • Python: Version 3.6 or higher.
  • TensorFlow: Version 2.x or later.
  • pip: Latest version recommended.

Installation via Pip

Install AlphaNetworks directly from PyPI:

pip install alphanetworks

Usage

Command-Line Interface

Basic Usage

alphanetworks --train TRAIN --val VAL [OPTIONS]

Options

  • --train or -t: Path to the training dataset.
  • --val or -v: Path to the validation dataset.
  • --epochs or -e: Number of training epochs (default: 30).
  • --batch_size or -b: Batch size for training and validation (default: 32).
  • --lr or -l: Initial learning rate for the Adam optimizer (default: 0.001).
  • --output_dir or -o: Directory to save model weights and reports.
  • --nc: Number of target classes for classification (default: inferred from data).

Help

For a detailed list of options, run:

alphanetworks --help

Examples

Example 1: Basic Training

alphanetworks --train ./data/train --val ./data/val --epochs 20

Example 2: Custom Parameters

alphanetworks --train ./data/train --val ./data/val --epochs 50 --batch_size 64 --lr 0.0005 --nc 10

Programmatic Usage

from alphanetworks import alphanet

# Build the model
model = alphanet(input_shape=(224, 224, 3), num_classes=10)

# Compile the model
model.compile(
    optimizer="adam",
    loss="categorical_crossentropy",
    metrics=["accuracy"]
)

# Train the model
model.fit(train_data, validation_data=val_data, epochs=30)

Troubleshooting

Download Errors

During runtime, pre-trained weights for ResNet50V2 or DenseNet169 are automatically downloaded. Ensure you have a stable internet connection.


Project Structure

alphanetworks/
├── alphanet.py
├── utils.py
├── scripts/
│   └── train.py
├── setup.py
└── README.md

Documentation

For detailed documentation, visit the GitHub repository.


Contributing

Contributions are welcome! Please submit a pull request or open an issue.


License

This project is licensed under the MIT License.


Contact

For any queries, reach out to the author at mail.


Acknowledgments

  • TensorFlow and Keras Teams
  • Researchers of ResNet and DenseNet

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

alphanetworks-0.1.4.tar.gz (5.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

alphanetworks-0.1.4-py3-none-any.whl (7.5 kB view details)

Uploaded Python 3

File details

Details for the file alphanetworks-0.1.4.tar.gz.

File metadata

  • Download URL: alphanetworks-0.1.4.tar.gz
  • Upload date:
  • Size: 5.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for alphanetworks-0.1.4.tar.gz
Algorithm Hash digest
SHA256 e714a1b3e9acec4a012bcef469e910634c606355e59908bfaf91eb1136c93819
MD5 6884cdc7923da667b0c9ca0dd7dc5b6f
BLAKE2b-256 a8374c7991937b93a17d5f46fb7b42719d43b90578207f9a42102c1d3a417ae5

See more details on using hashes here.

File details

Details for the file alphanetworks-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: alphanetworks-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 7.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for alphanetworks-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 dbf44b8a97c2ef78490028f630f0ae5f9dd231d3d8cdb7fa563a4e2387069143
MD5 d9165a39433eb1bd584b482fbed109c5
BLAKE2b-256 9f989de03909bd47c9ae4f16a96f919060ab1c6b9599fa4cdcc62bcb6d2078f8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page