Skip to main content

Automated Feature Engineering framework

Project description

AutoFEAT

Framework for automated feature generation based on statistics and AI tools

PyPI version Python 3.8+

Installation

pip install autofe-vsu-project

Quick Start

import pandas as pd
from autofe import GroupAggregationFeatures, StatisticalFeatureGenerator

# Load your data
df = pd.read_csv('your_data.csv')
X_train, X_test, y_train, y_test = train_test_split(X, y)

# Generate group-based features
group_features = GroupAggregationFeatures(
    numeric_cols=['age', 'fare'],
    group_cols=['pclass', 'sex'],
    aggs=['mean', 'std'],
    add_deviation=True
)
X_train_grouped = group_features.fit_transform(X_train)

# Generate statistical features
stat_features = StatisticalFeatureGenerator(
    numeric_cols=['age', 'fare'],
    unary=['log', 'sqrt'],
    pairwise=['diff']
)
X_train_stats = stat_features.fit_transform(X_train_grouped, y_train)

Key Features

  • Group Aggregations - Mean, std, min, max, sum, count by categories
  • Statistical Transforms - Log, sqrt, ratio, difference between features
  • Sklearn-Compatible - Works with Pipeline, GridSearchCV

🔧 Requirements

  • Python >= 3.8
  • numpy >= 1.19.0
  • pandas >= 1.2.0
  • scikit-learn >= 0.24.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

autofe_grass-0.0.1-py3-none-any.whl (10.0 kB view details)

Uploaded Python 3

File details

Details for the file autofe_grass-0.0.1-py3-none-any.whl.

File metadata

  • Download URL: autofe_grass-0.0.1-py3-none-any.whl
  • Upload date:
  • Size: 10.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for autofe_grass-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 39680ed1e1379a5fe3845f5a9e7dd0a85dfa28b5cce045a0729a808f0a7f903e
MD5 0ab81c31a03b619c2599f2a54996dc29
BLAKE2b-256 89d3592a9fd966496120dc21d2dc13f252becd6443cbba67ddda36bd2194c5f8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page