An automated machine learning pipeline with all-at-one-click feature.
Project description
AutoNova
AutoNova is a modern AutoML framework that can handle everything from data preprocessing to model training in just 3 lines of code.
It is designed to save your time, boost productivity, and make Machine Learning workflows effortless.
Features
🔹 Preprocessing Class
- Cleaning & Transforming – Handle missing values, scaling, encoding
- Feature Engineering – Generate new useful features automatically
- Feature Selection – Select only the most important features
- Balancing – Fix imbalanced datasets with SMOTE
- Splitting – Train-test splits with ease
🔹 Model Training Class
- Automated Model Selection & Training
- Hyperparameter Tuning with Optuna
- Performance Metrics (Accuracy, Precision, Recall, F1, ROC-AUC)
Installation
pip install autonova
Usage Description
from autonova.auto import AutoNova
import pandas as pd
df = pd.read_csv("star_classification.csv")
target_col = "class"
automl = AutoNova(data=df, target_col=target_col)
automl.go(use_gpu=False, fast_mode=False, cv_splits=5, n_trials=50)
print("Best Model:", mode.best_model)
print("Preprocessing Steps:", mode.preprocess_logic)
print("Score:", mode.score)
print("Train Data Shapes:", [x.shape for x in mode.train_data])
print("Test Data Shapes:", [x.shape for x in mode.test_data])
use_gpu=TrueGPU for Optuna trainingfast_mode=Trueonly Faster modelscv_splits=5number of Splitsn_trials=50number of Trials
Contributing
Pull requests are welcome! For major changes, please open an issue first to discuss what you would like to change. Take use of CONTRIBUTING.md file to make contributions.
Github Link : https://github.com/Sanjaypal1916/ProjectX
License
MIT License – do anything, just give credit.
Need Help?
If you’re stuck, don’t worry — we’ve got your back!
- Open a Discussion for general questions.
- Create an Issue for bug reports or feature requests.
- Or contact the maintainers directly.
We’d love to see your contributions and help you along the way.
✨ Keep learning, keep building, and keep innovating!
💡 Together, we can make AutoNova even better.
Best,
The AutoNova Team 🚀
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file autonova-1.0.5.tar.gz.
File metadata
- Download URL: autonova-1.0.5.tar.gz
- Upload date:
- Size: 16.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5cc5b6df151ed0fdd34b7167e09b48acf3b7c96d431751c9dd68bec9d42cf640
|
|
| MD5 |
ac85f43edce774ef9dc423b4022aaf6e
|
|
| BLAKE2b-256 |
ede56f100dee6d70fc122abcb99f22009fc720a1e06cd3dd3d54b6483f1abd1c
|
File details
Details for the file autonova-1.0.5-py3-none-any.whl.
File metadata
- Download URL: autonova-1.0.5-py3-none-any.whl
- Upload date:
- Size: 20.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d7c329ceeb06f19afd08eb02b832ac7371190a7f42a87aef13bc4eb1ca02078
|
|
| MD5 |
c1750256d4add53dd31a6560ab8dd7b4
|
|
| BLAKE2b-256 |
8aeb7e69c42b768454f98ae6affe4bc0186699de79de06cc6294684b564ae580
|