Skip to main content

Story Recommender System based on LightFM

Project description

Story Recommender System based on LightFM

Overview

This project implements a personalized story recommendation system using the LightFM library. The system is designed to recommend stories (books, comics, audiobooks, etc.) to users based on their explicit ratings, reading behavior, language and preferences.

The code is structured in an object-oriented way, making it easy to maintain and extend. It uses Python type hints for clarity and robustness.


Project Structure

  • DataManager: Handles loading, preprocessing, and validation of all datasets (stories, users, ratings, behavioral data).
  • RecommenderSystem: Builds the recommendation model, processes user-story interactions, trains the LightFM model, and generates recommendations.

Data Sources

  1. Story Dataset (story_dataset.csv)

    • Contains metadata for each story: genres, keywords, language, age rating, etc.
  2. User Dataset (user_dataset.csv)

    • Contains user profiles: favorite genres, preferred keywords, language, age rating limitation, etc.
  3. Rating Dataset (simple_rating_dataset.csv)

    • Contains explicit user ratings for stories, with timestamps.
  4. Behavioral Dataset (behavioral_dataset.csv)

    • Contains user behavior logs, specifically:
      • reads: List of strings in the format story-uuid-language-percentage_finished (e.g., abc123-en-0.75)
      • impressions: List of story IDs the user has seen
      • timestamp: When the behavior occurred

Key Features

  • Strict Language Enforcement: Only recommends stories in the user's preferred language. (Can be disabled)
  • Hybrid Recommendation: Uses both explicit ratings (most important) and implicit behavioral signals (e.g., how much of a story was read).
  • Completion Percentage Weighting: For behavioral reads, the percentage of the story finished is used as the interaction strength.
  • Time Decay: More recent interactions are weighted more heavily.

How It Works

1. Data Loading and Preprocessing

  • DataManager loads all datasets.
  • Parses columns that contain lists (e.g., genres, keywords, reads).
  • Builds feature lists for each story and user for use in LightFM.
  • Validates that all stories are in a language supported by at least one user.

2. Interaction Matrix Construction

  • Explicit Ratings: For each user-story pair with a rating, an interaction is created with the rating as the weight.
  • Behavioral Reads: For each read, the code extracts the story ID, language, and completion percentage. If the language matches both the user's preference and the story's language, and there is no explicit rating for that pair, an interaction is created with the completion percentage as the weight.
  • Impressions: Optionally included as weak implicit interactions.
  • Time Decay: All interactions are further weighted by recency, so recent interactions are more important.

3. Model Training

  • The RecommenderSystem builds a LightFM dataset with all users, stories, and their features.
  • The interaction matrix (with weights) is used to train a LightFM model using the WARP loss function.
  • User and item features are included to help with cold-start scenarios.

4. Generating Recommendations

  • For a given user, the system:
    • Filters out stories in the wrong language.
    • Removes stories the user has already interacted with (read or rated).
    • Scores the remaining stories using the trained model.
    • Returns the top-N recommendations, including story metadata.

Example Usage

dm = DataManager(
story_path='story_dataset.csv',
user_path='user_dataset.csv',
rating_path='simple_rating_dataset.csv',
behavior_path='behavioral_dataset.csv'
)
dm.load_data()

recommender = RecommenderSystem(dm)
recommender.prepare_dataset()
recommender.train_model(epochs=30)

example_user = dm.users.iloc['userId']
recommendations = recommender.recommend(example_user, top_n=5)
print(recommendations)

Requirements

  • Python 3.9+
  • pandas
  • numpy
  • lightfm

Authors

Adam Mitrenga
Jan Voracek

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

literaryuniverse_recommender-0.1.2.tar.gz (8.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

literaryuniverse_recommender-0.1.2-py3-none-any.whl (8.4 kB view details)

Uploaded Python 3

File details

Details for the file literaryuniverse_recommender-0.1.2.tar.gz.

File metadata

File hashes

Hashes for literaryuniverse_recommender-0.1.2.tar.gz
Algorithm Hash digest
SHA256 3c53205be475151ce77fbf8722c7e973379ee171e2008ac45d35fd3db062e0f5
MD5 464f57a49db836bdb9f7ed34f4a38c84
BLAKE2b-256 fee8476d5ebe6103dfbb75248ec5d28b450d02cb0653d0d9aa235b63dbd599bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for literaryuniverse_recommender-0.1.2.tar.gz:

Publisher: pypi.yml on Edems10/literaryuniverse-recommender

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file literaryuniverse_recommender-0.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for literaryuniverse_recommender-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 901b91bc1930a29c76b859328ba36c7d5104ec018974d43292eca6c0c22c27b1
MD5 34fe940af6034172df030a2c94ef5141
BLAKE2b-256 63c9b4840753fdeb98caa34a26708cf2d7f139896dcf4835cfdd076312ffb1b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for literaryuniverse_recommender-0.1.2-py3-none-any.whl:

Publisher: pypi.yml on Edems10/literaryuniverse-recommender

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page