An easy-to-use Python library for building EASE recommendation systems with CUDA
Project description
fast EASE for CUDA
EASY is a unique and decisive approach to recommendation for a limited number of users and items. One challenge is that the matrix inversion process becomes computationally intensive, requiring significant processing time on the central processing unit (CPU). This issue is addressed in the current project by leveraging CUDA, a powerful technology specifically designed for parallel processing. The key distinction is that this solution is intended not for research purposes but rather for deployment in production environments.
Framework
Structure
.github: GitHub Actions workflows.src: Library's source code.tests: Unit tests..editorconfig: Editor settings for consistent coding style..gitignore: Excludes files generated by Python and Poetry.LICENSE: License file.Makefile: Manage tasks like testing, linting, and formatting.pyproject.toml: PyPi's configuration file.
Getting Started
bash:
pip install fastEASE
mkdir dataset
wget --no-check-certificate https://files.grouplens.org/datasets/movielens/ml-1m.zip -O dataset/ml-1m.zip
unzip dataset/ml-1m.zip -d dataset/
python:
k = 5
pipeline = PipelineEASE(
user_item_it=DatasetML1M.load_interactions(
"dataset/ml-1m"
),
min_item_freq=1,
min_user_interactions_len=5,
max_user_interactions_len=32,
calc_ndcg_at_k=True,
k=k,
predict_next_n=False,
)
print(f"nDCG@{k} = {pipeline.ndcg:.4}")
Prerequisites
Python>= 3.10GNU Make
Tested on Ubuntu 24.04 LTS and Debian 12. But the template should work on other operating systems as well.
Setting Things Up
-
Clone the repository:
git clone https://github.com/fkrasnov2/fastEASE cd fastEASE
-
Install dependencies:
make install
Development Workflow Management
# Run the unit tests
make test
# Lint the code
make lint
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 fastease-0.4.5.tar.gz.
File metadata
- Download URL: fastease-0.4.5.tar.gz
- Upload date:
- Size: 10.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf41de82ceea3e1c1e95352e689fca01916867ea732cb8061e0be23cd077582e
|
|
| MD5 |
43b1605d9c08123313089162eef2ee11
|
|
| BLAKE2b-256 |
2401e91471342af539ca861bbad1065dc5c653d7dfcaccaec0c227eca3f637c4
|
File details
Details for the file fastease-0.4.5-py3-none-any.whl.
File metadata
- Download URL: fastease-0.4.5-py3-none-any.whl
- Upload date:
- Size: 7.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5de27376db4fa478b8bc3c8ba4b9d6e6a326667bc5574f816e924894793ee880
|
|
| MD5 |
bfd030a798ed822462d997607696e5bf
|
|
| BLAKE2b-256 |
2ddf79f46e5d1c2c18385db5bdf74dc65c5e5dd9b761bd0bb64c717d25451a34
|