Metadata-Version: 2.1
Name: sisense-automl
Version: 0.1.3
Summary: A package for automating machine learning processes using Sisense and AutoML.
Home-page: https://github.com/hnegi01/sisense_automl.git
Author: Himanshu Negi
Author-email: himanshu.negi.08@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# 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.

## 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:

```sh
pip install sisense-automl
```

## System-Level Dependencies

Before installing the package, make sure you have the following system-level dependencies:

```sh
sudo apt-get install swig -y
```

## Python-Level Dependencies

The package will automatically install the required Python dependencies, including:

- Cython
- scikit-learn==0.24.0
- auto-sklearn
- seaborn
- matplotlib

## Usage

Here is a basic example of how to use the 'sisense-automl' package:

```python
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.

