Skip to main content

An automated machine learning optimization package

Project description

Aion Optimizer

A Python package for automated machine learning optimization.

Installation

pip install aion_optimizer

Usage

from aion_optimizer import EnhancedSequentialOptimizer
import pandas as pd
from sklearn.model_selection import train_test_split

dataset_path = "..."

df = pd.read_csv(dataset_path)

optimizer = EnhancedSequentialOptimizer(
        task_type='classification',
        target_column='class', 
        generations=5,
        cv_folds=5,
        random_state=42,
        n_jobs=-1,
        verbosity=0,
        categorical_threshold=10
    )

train_df, test_df = train_test_split(df, test_size=0.2, random_state=42)

# Fit the optimizer
optimizer.fit(train_df)

# Get the best model parameters and print them
results = optimizer.best_model_params(test_df)
print(results)

## Features
- Automatic model selection
- Hyperparameter optimization
- Support for:
  - Binary classification
  - Multiclass classification
  - Regression
- Simplified metrics reporting
- Cross-validation support
- Detailed results logging

## Requirements
- Python >=3.7
- NumPy >=1.19.0
- Pandas >=1.2.0
- Scikit-learn >=0.24.0
- SciPy >=1.6.0

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

aion_optimizer-0.1.1.tar.gz (11.1 kB view details)

Uploaded Source

Built Distribution

aion_optimizer-0.1.1-py3-none-any.whl (12.4 kB view details)

Uploaded Python 3

File details

Details for the file aion_optimizer-0.1.1.tar.gz.

File metadata

  • Download URL: aion_optimizer-0.1.1.tar.gz
  • Upload date:
  • Size: 11.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.7

File hashes

Hashes for aion_optimizer-0.1.1.tar.gz
Algorithm Hash digest
SHA256 0463878041a869f416b890f95870871c89af3131d84426c342dde880c7687ceb
MD5 e0fc1dd5f95390eded4e71fed3d46b67
BLAKE2b-256 4b012f1be53e31ec31e755e844935d240d75b754d0b45f49590ccf97b1bcce9f

See more details on using hashes here.

File details

Details for the file aion_optimizer-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for aion_optimizer-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 84946b66b20988b0dd2aa77c4b7324e5b4c914349822046ef8cfdccd234f4c6c
MD5 b2dcdf4849fea1cac5dda995265cf2bd
BLAKE2b-256 b81e33b88040dcdf589251fdb399aeb3f8fea0eb30d16643dc47cd5ffdd633d0

See more details on using hashes here.

Supported by

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