Skip to main content

A package for automatically generating features

Project description

Intro

This is a package for automatically feature engineering.

Suitable for tabular numerical data and the classification modelling.

Install

pip install auto-feature-engineering

Usage

from autofe import autofe

x_train, x_test, y_train, y_test, feature_cols = load_data()

afe = autofe.AutoFE('primary_key', feature_cols)

afe.fit(x_train, y_train)

x_train = afe.transform(x_train)
x_test = afe.transform(x_test)

finaldf = afe.generator(x_train, x_test, y_train, y_test)

Examples

To see how the demo for running the package, see the demo.

Contributing

@XinlinWang

License

MIT © Xinlin Wang

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

auto-feature-engineering-0.0.2.tar.gz (7.6 kB view hashes)

Uploaded Source

Built Distribution

auto_feature_engineering-0.0.2-py3-none-any.whl (6.5 kB view hashes)

Uploaded Python 3

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