Generative AutoML for Tabular Data
Project description
Generative AutoML for Tabular Data
SapientML is an AutoML technology that can learn from a corpus of existing datasets and their human-written pipelines, and efficiently generate a high-quality pipeline for a predictive task on a new dataset.
NEW: Available on 🤗 HuggingFace Spaces!!
Installation
From PyPI repository
pip install sapientml
From source code:
git clone https://github.com/sapientml/sapientml.git
cd sapientml
pip install poetry
poetry install
Getting Started
Please see our Documentation for further details.
Run AutoML
import pandas as pd
from sapientml import SapientML
from sklearn.metrics import f1_score
from sklearn.model_selection import train_test_split
train_data = pd.read_csv("https://github.com/sapientml/sapientml/files/12481088/titanic.csv")
train_data, test_data = train_test_split(train_data)
y_true = test_data["survived"].reset_index(drop=True)
test_data.drop(["survived"], axis=1, inplace=True)
cls = SapientML(["survived"])
cls.fit(train_data)
y_pred = cls.predict(test_data)
y_pred = y_pred["survived"].rename("survived_pred")
print(f"F1 score: {f1_score(y_true, y_pred)}")
Obtain and Run Generated Code
You can access model
field to get a model consisting of generated code after executing fit
method.
model
provides fit
, predict
, and save
method to train a model by generated code, predict from a test data by generated code, and save generated code to a designated folder.
model = sml.fit(train_data, codegen_only=True).model
model.fit(X_train, y_train) # build a model by using another data and the same generated code
y_pred = model.predict(X_test) # prediction by using generated code
model.save("/path/to/output") # save generated code to `path/to/output`
Examples
Dataset | Task | Target | Code |
---|---|---|---|
Titanic Dataset | classification |
survived |
|
Hotel Cancellation | classification |
Status |
|
Housing Prices | regression |
SalePrice |
|
Medical Insurance Charges | regression |
charges |
Publications
The technologies of the software originates from the following research paper published at the International Conference on Software Engineering (ICSE), which is one of the premier conferences on Software Engineering.
Ripon K. Saha, Akira Ura, Sonal Mahajan, Chenguang Zhu, Linyi Li, Yang Hu, Hiroaki Yoshida, Sarfraz Khurshid, Mukul R. Prasad (2022, May). SapientML: Synthesizing Machine Learning Pipelines by Learning from Human-Written Solutions. In Proceedings of the 44th International Conference on Software Engineering (pp. 1932-1944).
@inproceedings{10.1145/3510003.3510226,
author = {Saha, Ripon K. and Ura, Akira and Mahajan, Sonal and Zhu, Chenguang and Li, Linyi and Hu, Yang and Yoshida, Hiroaki and Khurshid, Sarfraz and Prasad, Mukul R.},
title = {SapientML: Synthesizing Machine Learning Pipelines by Learning from Human-Written Solutions},
year = {2022},
isbn = {9781450392211},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/3510003.3510226},
doi = {10.1145/3510003.3510226},
abstract = {Automatic machine learning, or AutoML, holds the promise of truly democratizing the use of machine learning (ML), by substantially automating the work of data scientists. However, the huge combinatorial search space of candidate pipelines means that current AutoML techniques, generate sub-optimal pipelines, or none at all, especially on large, complex datasets. In this work we propose an AutoML technique SapientML, that can learn from a corpus of existing datasets and their human-written pipelines, and efficiently generate a high-quality pipeline for a predictive task on a new dataset. To combat the search space explosion of AutoML, SapientML employs a novel divide-and-conquer strategy realized as a three-stage program synthesis approach, that reasons on successively smaller search spaces. The first stage uses meta-learning to predict a set of plausible ML components to constitute a pipeline. In the second stage, this is then refined into a small pool of viable concrete pipelines using a pipeline dataflow model derived from the corpus. Dynamically evaluating these few pipelines, in the third stage, provides the best solution. We instantiate SapientML as part of a fully automated tool-chain that creates a cleaned, labeled learning corpus by mining Kaggle, learns from it, and uses the learned models to then synthesize pipelines for new predictive tasks. We have created a training corpus of 1,094 pipelines spanning 170 datasets, and evaluated SapientML on a set of 41 benchmark datasets, including 10 new, large, real-world datasets from Kaggle, and against 3 state-of-the-art AutoML tools and 4 baselines. Our evaluation shows that SapientML produces the best or comparable accuracy on 27 of the benchmarks while the second best tool fails to even produce a pipeline on 9 of the instances. This difference is amplified on the 10 most challenging benchmarks, where SapientML wins on 9 instances with the other tools failing to produce pipelines on 4 or more benchmarks.},
booktitle = {Proceedings of the 44th International Conference on Software Engineering},
pages = {1932–1944},
numpages = {13},
keywords = {AutoML, program synthesis, program analysis, machine learning},
location = {Pittsburgh, Pennsylvania},
series = {ICSE '22}
}
Project details
Release history Release notifications | RSS feed
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
File details
Details for the file sapientml-0.4.15.tar.gz
.
File metadata
- Download URL: sapientml-0.4.15.tar.gz
- Upload date:
- Size: 24.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.10.14 Linux/6.5.0-1025-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 334c57660c0717acae21c0701a8c45d09fdc581305e60c1587e5297d58d7fddb |
|
MD5 | bb8e7e5f50d12eaabc30bb9500cb454a |
|
BLAKE2b-256 | 548447e921f416d7aa5ccbce186113357031f845281858e41ed2905e2ba830e3 |
File details
Details for the file sapientml-0.4.15-py3-none-any.whl
.
File metadata
- Download URL: sapientml-0.4.15-py3-none-any.whl
- Upload date:
- Size: 29.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.10.14 Linux/6.5.0-1025-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bea89aba9979b46125aaa95f4c6c02f5b827853f242b12edcbb18bb4d1f7571d |
|
MD5 | 298bb6f8271a0834d90e3f35b740eacf |
|
BLAKE2b-256 | 6b435682317eb3d03693a89f52762a40dc416fb71b637fd6f33f8fe34151f00f |