Skip to main content

Python implementation of Factorization Machines (+ Field Aware)

Project description

        _________  _.
.__    |__ |__ | \/ |
|__\__/|   |   |    |
|   /       

*** early stage testing! ***

A python implementation of Factorization Machines / Field-aware Factorization Machines with a simple interface.

Installation:

pip install pyffm

Basic example:

import pandas as pd
from pyffm import PyFFM
training_params = {'epochs': 2, 'reg_lambda': 0.002}
pyffm = PyFFM(model="ffm", training_params=training_params)

file_path = 'path/to/csv/file'
df_in = pd.read_csv(file_path)
# Make sure your file has a label column, default name is 'click' but you can either rename it or pass in label
df_in.rename(columns={'label': 'click'}, inplace=True)

pyffm.train(df_in)
preds = pyffm.predict(df_in)

Sample data from: https://github.com/ycjuan/libffm

Created using the algorithm described in the original paper: https://www.csie.ntu.edu.tw/~cjlin/papers/ffm.pdf

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

pyFFM-0.0.2.tar.gz (9.2 kB view hashes)

Uploaded Source

Built Distribution

pyFFM-0.0.2-py3-none-any.whl (14.7 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