A realtime recommendation system supporting online updates
Project description
rtrec: Realtime Recommendation Library in Python
A realtime recommendation system supporting online updates.
Highlights
- ❇️ Supporting online updates.
- ⚡️ Fast implementation (>=190k samples/sec training on laptop).
- ◍ efficient sparse data support.
- 🕑 decaying weights of user-item interactions based on recency.
- 🔄 Hybrid CF(Collaborative-Filtering)/CB(Content-based) model for cold-start users.
experimental Rust implementation
Supported Recommendation Algorithims
- Sparse SLIM with time-weighted interactions.
- Factorization Machines using LightFM
- Hybrid model of SLIM (CF) and Factorization Machines (CB). Based on the number of user-item interactions, balances prediction weights between CF and CB.
Installation
# using pip
pip install rtrec
pip install rtrec[serving]
# using uv
uv add rtrec
uv sync --no-extra serving
uv add rtrec[serving]
uv sync --extra serving
Usage
Find usages in notebooks/examples.
Examples using Raw-level APIs
# Dataset consists of user, item, tstamp, rating
import time
current_unixtime = time.time()
interactions = [('user_1', 'item_1', current_unixtime, 5.0),
('user_2', 'item_2', current_unixtime, -2.0),
('user_2', 'item_1', current_unixtime, 3.0),
('user_2', 'item_4', current_unixtime, 3.0),
('user_1', 'item_3', current_unixtime, 4.0)]
# Fit SLIM model
from rtrec.models import SLIM
model = SLIM()
model.fit(interactions)
# can fit from streams using yield as follows:
def yield_interactions():
for interaction in interactions:
yield interaction
model.fit(yield_interactions())
# Recommend top-5 items for a user
recommendations = model.recommend('user_1', top_k=5)
assert recommendations == ["item_4", "item_2"]
Examples using high level DataFrame APIs
# load dataset
from rtrec.experiments.datasets import load_dataset
df = load_dataset(name='movielens_1m')
# Split data set by temporal user split
from rtrec.experiments.split import temporal_user_split
train_df, test_df = temporal_user_split(df)
# Initialize SLIM model with custom options
from rtrec.recommender import Recommender
from rtrec.models import SLIM
model = SLIM(min_value=0, max_value=15, decay_in_days=180, nn_feature_selection=50)
recommender = Recommender(model)
# Bulk fit
recommender.bulk_fit(train_df)
# Partial fit
from rtrec.experiments.split import temporal_split
test_df1, test_df2 = temporal_split(test_df, test_frac=0.5)
recommender.fit(test_df1, update_interaction=True, parallel=True)
# Evaluation
metrics = recommender.evaluate(test_df2, recommend_size=10, filter_interacted=True)
print(metrics)
# User to Item Recommendation
recommended = recommender.recommend(user=10, top_k=10, filter_interacted=True)
assert len(recommended) == 10
# Item to Item recommendation
similar_items = recommender.similar_items(query_items=[3,10], top_k=5)
assert len(similar_items) == 2
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
rtrec-0.2.3.tar.gz
(72.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
rtrec-0.2.3-py3-none-any.whl
(60.1 kB
view details)
File details
Details for the file rtrec-0.2.3.tar.gz.
File metadata
- Download URL: rtrec-0.2.3.tar.gz
- Upload date:
- Size: 72.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c11983c6ee9c446ce7bd4ca3d1d7c56acfeab844255f26e3776958d2e2fed043
|
|
| MD5 |
bf8a22aa1fbd19d6ec61196e07002224
|
|
| BLAKE2b-256 |
5fd8ad0e49d24dc92ce9b67b9193c8fe41b2f563cbd8be6b2b214f31a7a6f8dd
|
File details
Details for the file rtrec-0.2.3-py3-none-any.whl.
File metadata
- Download URL: rtrec-0.2.3-py3-none-any.whl
- Upload date:
- Size: 60.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aeba768b9f5e7b081d2467ad09214dce1bd9a1765568e76afc768412b979b876
|
|
| MD5 |
69bba2196a55cca9c8c2cbd2952438bb
|
|
| BLAKE2b-256 |
0d46a1a45796cb3277b3381e3fa8f24e5eda8cccf419014020d1e20656e2cb93
|