futureframe

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


Keywords
data, science, foundation, models, tabular, ai, data-science, foundation-models, machine-learning
License
Apache-2.0
Install
pip install futureframe==0.1.8

Documentation

💠 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.