Skip to main content

Accelerate your data science workflow from months to days with foundation models for tabular data.

Project description

💠 Future Frame

  • This Python package allows you to interact with pre-trained foundation models for tabular data.
  • Easily fine-tune them on your classification and regression use cases in a single line of code.
  • Interested in what we're building? Join our waitlist.

Installation

  1. Install Future Frame with pip – more details on our PyPI page.
pip install futureframe
  1. Download model weights here and store the weights folder in your working directory.

Quick Start

Use Future Frame to fine-tune a pre-trained foundation model on a classification task.

# Import standard libraries
import pandas as pd
from sklearn.model_selection import train_test_split
from sklearn.metrics import roc_auc_score

# Import Future Frame
import futureframe as ff

# Import data
dataset_name = "tests/data/churn.csv"
target_variable = "Churn"
df = pd.read_csv(dataset_name)

# Split data
X, y = df.drop(columns=[target_variable]), df[target_variable]
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.3, random_state=42)

# Fine-tune a pre-trained classifier with Future Frame
model = ff.models.CM2Classifier()
model.finetune(X_train, y_train)

# Make predictions with Future Frame
y_pred = model.predict(X_test)

# Evaluate your model
auc = roc_auc_score(y_test, y_pred)
print(f"AUC: {auc:0.2f}")

Models

Model Name Paper Title Paper GitHub
CM2 Towards Cross-Table Masked Pretraining for Web Data Mining Ye et al., 2024 Link

More foundation models will be integrated into the library soon. Stay stuned by joining our waitlist!

Links

Contributing

  • We are currently under heavy development.
  • If you'd like to contribute, please send us an email at eduardo(at)futureframe.ai.
  • To report a bug, please write an issue.

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

futureframe-0.1.11.tar.gz (41.6 kB view details)

Uploaded Source

Built Distribution

futureframe-0.1.11-py3-none-any.whl (46.1 kB view details)

Uploaded Python 3

File details

Details for the file futureframe-0.1.11.tar.gz.

File metadata

  • Download URL: futureframe-0.1.11.tar.gz
  • Upload date:
  • Size: 41.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.12.0 Darwin/22.6.0

File hashes

Hashes for futureframe-0.1.11.tar.gz
Algorithm Hash digest
SHA256 0187d985ee50eb7f7045fe68be7412de73a30b0c735ee94c556ae2551d9617ce
MD5 b68203c0d029319ec77bea450238b1e8
BLAKE2b-256 4c2fd3e60135085b4b0169c10b6569a5a4b8eaaca74dcffb9e2db37b19f53992

See more details on using hashes here.

File details

Details for the file futureframe-0.1.11-py3-none-any.whl.

File metadata

  • Download URL: futureframe-0.1.11-py3-none-any.whl
  • Upload date:
  • Size: 46.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.12.0 Darwin/22.6.0

File hashes

Hashes for futureframe-0.1.11-py3-none-any.whl
Algorithm Hash digest
SHA256 ab69cbb7361982bedb2b5ec8d039168c7a9307eff0369adaacfc3b8166c6c098
MD5 4c44f7734d1c79e1e5cc80b88f8123cd
BLAKE2b-256 bc5598422a3dfd3d3bac51be99edc8b8c571e019a6b5703cf48b33810f09e597

See more details on using hashes here.

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