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.3-py3-none-any.whl (10.0 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: autofe_grass-0.0.3-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.3-py3-none-any.whl
Algorithm Hash digest
SHA256 4021cb24fde40565751d7d4fc391e2047b22e4e6eb6a003d843bfea1feadefb4
MD5 12c0577e2c707d5871a635e99397e4e7
BLAKE2b-256 ddd22dcbc64898241078ea7b6705031500358a1ad0ea21dd1ff6f0d00f875dcd

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