Skip to main content

Create a progression of recommendations from a user-supplied recommender

Project description

Progression

Code style: black

Create a progression of recommendations from a user-supplied recommender. For more info, see our official docs

General

This package was made for a specific use-case but should work with any content-based recommendation engine and possibly user-based recommenders.

The initial use case was to create a visual progression of artwork recommendations. This was done to create interesting collections of fine artworks powered by our computer vision recommendation engine.

To see an example, see our samples.

Quickstart

Install

pip install graph-progression

Implement

Progession has a full sample set to show the functionality of the package w/o the need of a recommender.

from graph_progression import DFSProgressor, random_walk

progressor = DFSProgressor()
progressor.create_progression(0, random_walk, progression_length=3)  
# [0, 8114, 9353]

progressor.graph
# {
# 0: [8114, 5298, 2050, 4837, 1376, 2924, 8689, 8000, 2171, 3246], 
# 8114: [9353, 8647, 8768, 8391, 8555, 8879, 9102, 9481, 9282, 8142]
# }

As you can see, progession generates "recommendations" at each step, uses them to populate a graph (for memoization), and then continues on. Not shown here, but it also has the intelligence to backtrack using the graph if it ends a recommendation (node) with no recommedations (edges).

Features

  • Recommendation progression via sequential depth-first search
  • Memoization
  • Flexible API that can take as inputs:
    • Starter graph
    • Recommendation algorithm
    • Post recommendation filters
    • Selection algorithm
    • Progession length

Credits

This package was created with Cookiecutter and the mgancita/cookiecutter-pypackage project template.

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

graph_progression-0.0.2.tar.gz (5.1 kB view hashes)

Uploaded Source

Built Distribution

graph_progression-0.0.2-py3-none-any.whl (6.6 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