A package for automating machine learning processes using Sisense and AutoML.
Project description
sisense-automl
sisense-automl is a Python package for automating machine learning processes using Sisense and AutoML. It provides easy-to-use interfaces for data preprocessing, model training, and evaluation.
⚠️ Compatibility Warning
This package requires Python 3.9 to function correctly. Please ensure you are using the correct Python version.
Why only Python 3.9?
- Auto-sklearn does not support Python 3.10 or newer.
- Scikit-learn 0.24.0 (required by Auto-sklearn) works best with Python 3.9.
- NumPy 1.23+ removed
numpy.distutils, which some dependencies rely on.
Features
- Preprocesses data by handling duplicates, splitting numerical and categorical features, and encoding them appropriately.
- Splits data into training and testing sets.
- Uses auto-sklearn for training classification and regression models.
- Saves trained models and datasets for later use.
Installation
You can install the package using pip:
pip install sisense-automl
System-Level Dependencies
Before installing the package, make sure you have the following system-level dependencies:
sudo apt-get install swig -y
Python-Level Dependencies
The package will automatically install the required Python dependencies as specified in setup.py.
Usage
Here is a basic example of how to use the 'sisense-automl' package:
import pandas as pd
from sisense_automl import AutoMl
# Load your dataset
data = pd.read_csv("your_dataset.csv")
# Define your target column and objective
target_column = "target"
objective = "classification" # or "regression"
# Define the folder path to save models and data
folder_path = "your_folder_path"
# Create an AutoMl instance and run the process
automl = AutoMl(data, target_column, objective, folder_path)
License
This project is licensed under the MIT License. See the LICENSE file for more details.
Author
Himanshu Negi - himanshu.negi.08@gmail.com
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
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 sisense_automl-0.1.7.tar.gz.
File metadata
- Download URL: sisense_automl-0.1.7.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a1d19729f39816b4c8abb06254d7a55794f0de8548baba6a79585cddb26bd47
|
|
| MD5 |
a4e3a071df29b7e304c1a86ea0158515
|
|
| BLAKE2b-256 |
2ab1f470e8ff007bec4aac7b32a242af5f670f751d8ae115bc52196bda1154b0
|
File details
Details for the file sisense_automl-0.1.7-py3-none-any.whl.
File metadata
- Download URL: sisense_automl-0.1.7-py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
133585b34ba872f380a1b6bb441583155156a61dc6296e751432b3105697e7d6
|
|
| MD5 |
2a4ff8a01c3c3a5aa3cdf22bae0d017c
|
|
| BLAKE2b-256 |
2efc81ae6013fde6f6eab98a19aa42ea13a28db166f480a68af1e3d9b2b2cb2e
|