RecSys Library
Project description
RePlay is an advanced framework designed to facilitate the development and evaluation of recommendation systems. It provides a robust set of tools covering the entire lifecycle of a recommendation system pipeline:
🚀 Features:
- Data Preprocessing and Splitting: Streamlines the data preparation process for recommendation systems, ensuring optimal data structure and format for efficient processing.
- Wide Range of Recommendation Models: Enables building of recommendation models from State-of-the-Art to commonly-used baselines and evaluate their performance and quality.
- Hyperparameter Optimization: Offers tools for fine-tuning model parameters to achieve the best possible performance, reducing the complexity of the optimization process.
- Comprehensive Evaluation Metrics: Incorporates a wide range of evaluation metrics to assess the accuracy and effectiveness of recommendation models.
- Model Ensemble and Hybridization: Supports combining predictions from multiple models and creating two-level (ensemble) models to enhance the quality of recommendations.
- Seamless Mode Transition: Facilitates easy transition from offline experimentation to online production environments, ensuring scalability and flexibility.
💻 Hardware and Environment Compatibility:
- Diverse Hardware Support: Compatible with various hardware configurations including CPU, GPU, Multi-GPU.
- Cluster Computing Integration: Integrating with PySpark for distributed computing, enabling scalability for large-scale recommendation systems.
Table of Contents
📈 Quickstart
pip install replay-rec[all]
Pyspark-based model and fast polars-based data preprocessing:
from polars import from_pandas
from rs_datasets import MovieLens
from replay.data import Dataset, FeatureHint, FeatureInfo, FeatureSchema, FeatureType
from replay.data.dataset_utils import DatasetLabelEncoder
from replay.metrics import HitRate, NDCG, Experiment
from replay.models import ItemKNN
from replay.utils.spark_utils import convert2spark
from replay.utils.session_handler import State
from replay.splitters import RatioSplitter
spark = State().session
ml_1m = MovieLens("1m")
K = 10
# convert data to polars
interactions = from_pandas(ml_1m.ratings)
# data splitting
splitter = RatioSplitter(
test_size=0.3,
divide_column="user_id",
query_column="user_id",
item_column="item_id",
timestamp_column="timestamp",
drop_cold_items=True,
drop_cold_users=True,
)
train, test = splitter.split(interactions)
# datasets creation
feature_schema = FeatureSchema(
[
FeatureInfo(
column="user_id",
feature_type=FeatureType.CATEGORICAL,
feature_hint=FeatureHint.QUERY_ID,
),
FeatureInfo(
column="item_id",
feature_type=FeatureType.CATEGORICAL,
feature_hint=FeatureHint.ITEM_ID,
),
FeatureInfo(
column="rating",
feature_type=FeatureType.NUMERICAL,
feature_hint=FeatureHint.RATING,
),
FeatureInfo(
column="timestamp",
feature_type=FeatureType.NUMERICAL,
feature_hint=FeatureHint.TIMESTAMP,
),
]
)
train_dataset = Dataset(feature_schema=feature_schema, interactions=train)
test_dataset = Dataset(feature_schema=feature_schema, interactions=test)
# data encoding
encoder = DatasetLabelEncoder()
train_dataset = encoder.fit_transform(train_dataset)
test_dataset = encoder.transform(test_dataset)
# convert datasets to spark
train_dataset.to_spark()
test_dataset.to_spark()
# model training
model = ItemKNN()
model.fit(train_dataset)
# model inference
encoded_recs = model.predict(
dataset=train_dataset,
k=K,
queries=test_dataset.query_ids,
filter_seen_items=True,
)
recs = encoder.query_and_item_id_encoder.inverse_transform(encoded_recs)
# model evaluation
metrics = Experiment(
[NDCG(K), HitRate(K)],
test,
query_column="user_id",
item_column="item_id",
rating_column="rating",
)
metrics.add_result("ItemKNN", recs)
print(metrics.results)
🔧 Installation
Installation via pip package manager is recommended by default:
pip install replay-rec
In this case it will be installed the core package without PySpark and PyTorch dependencies.
Also experimental submodule will not be installed.
To install experimental submodule please specify the version with rc0 suffix.
For example:
pip install replay-rec==XX.YY.ZZrc0
Extras
In addition to the core package, several extras are also provided, including:
[spark]: Install PySpark functionality[torch]: Install PyTorch and Lightning functionality
Example:
# Install core package with PySpark dependency
pip install replay-rec[spark]
# Install package with experimental submodule and PySpark dependency
pip install replay-rec[spark]==XX.YY.ZZrc0
Additionally, replay-rec[torch] may be installed with CPU-only version of torch by providing its respective index URL during installation:
# Install package with the CPU version of torch
pip install replay-rec[torch] --extra-index-url https://download.pytorch.org/whl/cpu
To build RePlay from sources please use the instruction.
Optional features
RePlay includes a set of optional features which require users to install optional dependencies manually. These features include:
- Hyperpearameter search via Optuna:
pip install optuna
- Model compilation via OpenVINO:
pip install openvino onnx onnxscript
- Vector database and hierarchical search support:
pip install hnswlib fixed-install-nmslib
- (Experimental) LightFM model support:
pip install ligfhtfm
NOTE : LightFM is not officially supported for Python 3.12 due to discontinued maintenance of the library. If you wish to install it locally, you'll have to use a patched fork of LightFM, such as the one used internally.
📑 Resources
Usage examples
- 01_replay_basics.ipynb - get started with RePlay.
- 02_models_comparison.ipynb - reproducible models comparison on MovieLens-1M dataset.
- 03_features_preprocessing_and_lightFM.ipynb - LightFM example with pyspark for feature preprocessing.
- 04_splitters.ipynb - An example of using RePlay data splitters.
- 05_feature_generators.ipynb - Feature generation with RePlay.
- 06_item2item_recommendations.ipynb - Item to Item recommendations example.
- 07_filters.ipynb - An example of using filters.
- 08_recommending_for_categories.ipynb - An example of recommendation for product categories.
- 09_sasrec_example.ipynb - An example of using transformer-based SASRec model to generate recommendations.
- 10_bert4rec_example.ipynb - An example of using transformer-based BERT4Rec model to generate recommendations.
- 11_sasrec_dataframes_comparison.ipynb - speed comparison of using different frameworks (pandas, polars, pyspark) for data processing during SASRec training.
- 12_neural_ts_exp.ipynb - An example of using Neural Thompson Sampling bandit model (based on Wide&Deep architecture).
- 13_personalized_bandit_comparison.ipynb - A comparison of context-free and contextual bandit models.
- 14_hierarchical_recommender.ipynb - An example of using HierarchicalRecommender with user-disjoint LinUCB.
Videos and papers
-
Video guides:
-
Research papers:
- RePlay: a Recommendation Framework for Experimentation and Production Use Alexey Vasilev, Anna Volodkevich, Denis Kulandin, Tatiana Bysheva, Anton Klenitskiy. In The 18th ACM Conference on Recommender Systems (RecSys '24)
- Turning Dross Into Gold Loss: is BERT4Rec really better than SASRec? Anton Klenitskiy, Alexey Vasilev. In The 17th ACM Conference on Recommender Systems (RecSys '23)
- The Long Tail of Context: Does it Exist and Matter?. Konstantin Bauman, Alexey Vasilev, Alexander Tuzhilin. In Workshop on Context-Aware Recommender Systems (CARS) (RecSys '22)
- Multiobjective Evaluation of Reinforcement Learning Based Recommender Systems. Alexey Grishanov, Anastasia Ianina, Konstantin Vorontsov. In The 16th ACM Conference on Recommender Systems (RecSys '22)
- Quality Metrics in Recommender Systems: Do We Calculate Metrics Consistently? Yan-Martin Tamm, Rinchin Damdinov, Alexey Vasilev. In The 15th ACM Conference on Recommender Systems (RecSys '21)
💡 Contributing to RePlay
We welcome community contributions. For details please check our contributing guidelines.
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
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
File details
Details for the file replay_rec-0.21.2.tar.gz.
File metadata
- Download URL: replay_rec-0.21.2.tar.gz
- Upload date:
- Size: 246.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2507959df6682ee50ff19cc7c5062f1825b356639b8de20c21a85f8f71087348
|
|
| MD5 |
21183c9c9d9c1b2dc0dd74b910b6848a
|
|
| BLAKE2b-256 |
518bc38ce91d4c7e659988bc3e952c9ace6e734280b6bee0a171be6e9199ca04
|
Provenance
The following attestation bundles were made for replay_rec-0.21.2.tar.gz:
Publisher:
publish.yml on sb-ai-lab/RePlay
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
replay_rec-0.21.2.tar.gz -
Subject digest:
2507959df6682ee50ff19cc7c5062f1825b356639b8de20c21a85f8f71087348 - Sigstore transparency entry: 939754681
- Sigstore integration time:
-
Permalink:
sb-ai-lab/RePlay@1ada66acc5f666c02a8a70c50cc803289ed78a19 -
Branch / Tag:
refs/tags/v0.21.2 - Owner: https://github.com/sb-ai-lab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1ada66acc5f666c02a8a70c50cc803289ed78a19 -
Trigger Event:
push
-
Statement type:
File details
Details for the file replay_rec-0.21.2-py3-none-any.whl.
File metadata
- Download URL: replay_rec-0.21.2-py3-none-any.whl
- Upload date:
- Size: 364.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a917ad11302457e49bf628169da3aee1e80d5bf89c347caeb4e9f71e111de3ed
|
|
| MD5 |
9f1884153fd12cb77de399e04b603c52
|
|
| BLAKE2b-256 |
81718d7c091180d9d2f13385dee696fcb4f8ef29bd432be70cdaf1dd3d0b313c
|
Provenance
The following attestation bundles were made for replay_rec-0.21.2-py3-none-any.whl:
Publisher:
publish.yml on sb-ai-lab/RePlay
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
replay_rec-0.21.2-py3-none-any.whl -
Subject digest:
a917ad11302457e49bf628169da3aee1e80d5bf89c347caeb4e9f71e111de3ed - Sigstore transparency entry: 939754687
- Sigstore integration time:
-
Permalink:
sb-ai-lab/RePlay@1ada66acc5f666c02a8a70c50cc803289ed78a19 -
Branch / Tag:
refs/tags/v0.21.2 - Owner: https://github.com/sb-ai-lab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1ada66acc5f666c02a8a70c50cc803289ed78a19 -
Trigger Event:
push
-
Statement type: