All Projects → moebg → retailbox

moebg / retailbox

Licence: MIT license
🛍️RetailBox - eCommerce Recommender System using Machine Learning

Programming Languages

python
139335 projects - #7 most used programming language
Jupyter Notebook
11667 projects

Projects that are alternatives of or similar to retailbox

Cornac
A Comparative Framework for Multimodal Recommender Systems
Stars: ✭ 308 (+862.5%)
Mutual labels:  matrix-factorization, recommendation-system, recommendation-engine, recommender-system
recommender system with Python
recommender system tutorial with Python
Stars: ✭ 106 (+231.25%)
Mutual labels:  matrix-factorization, recommendation-system, recommendation-engine, recommender-system
Recdb Postgresql
RecDB is a recommendation engine built entirely inside PostgreSQL
Stars: ✭ 297 (+828.13%)
Mutual labels:  recommendation-system, recommendation-engine, recommender-system
recommender
NReco Recommender is a .NET port of Apache Mahout CF java engine (standalone, non-Hadoop version)
Stars: ✭ 35 (+9.38%)
Mutual labels:  recommendation-system, recommendation-engine, recommender-system
Chameleon recsys
Source code of CHAMELEON - A Deep Learning Meta-Architecture for News Recommender Systems
Stars: ✭ 202 (+531.25%)
Mutual labels:  recommendation-system, recommendation-engine, recommender-system
Carskit
Java-Based Context-aware Recommendation Library
Stars: ✭ 98 (+206.25%)
Mutual labels:  matrix-factorization, recommendation-engine, recommender-system
Movie Recommender System
Basic Movie Recommendation Web Application using user-item collaborative filtering.
Stars: ✭ 85 (+165.63%)
Mutual labels:  recommendation-system, recommendation-engine, recommender-system
raptor
A lightweight product recommendation system (Item Based Collaborative Filtering) developed in Haskell.
Stars: ✭ 34 (+6.25%)
Mutual labels:  ecommerce, recommendation-system, recommendation-engine
pprec
a recommender engine node-js package for general use and easy to integrate.
Stars: ✭ 29 (-9.37%)
Mutual labels:  matrix-factorization, recommendation-engine, recommender-system
Tf-Rec
Tf-Rec is a python💻 package for building⚒ Recommender Systems. It is built on top of Keras and Tensorflow 2 to utilize GPU Acceleration during training.
Stars: ✭ 18 (-43.75%)
Mutual labels:  matrix-factorization, recommendation-system, recommender-system
Recsys2019 deeplearning evaluation
This is the repository of our article published in RecSys 2019 "Are We Really Making Much Progress? A Worrying Analysis of Recent Neural Recommendation Approaches" and of several follow-up studies.
Stars: ✭ 780 (+2337.5%)
Mutual labels:  matrix-factorization, recommendation-system, recommender-system
mildnet
Visual Similarity research at Fynd. Contains code to reproduce 2 of our research papers.
Stars: ✭ 76 (+137.5%)
Mutual labels:  ecommerce, recommendation-system, recommender-system
Expo Mf
Exposure Matrix Factorization: modeling user exposure in recommendation
Stars: ✭ 81 (+153.13%)
Mutual labels:  matrix-factorization, recommender-system
Recosystem
Recommender System Using Parallel Matrix Factorization
Stars: ✭ 74 (+131.25%)
Mutual labels:  matrix-factorization, recommender-system
Flurs
🌊 FluRS: A Python library for streaming recommendation algorithms
Stars: ✭ 97 (+203.13%)
Mutual labels:  matrix-factorization, recommender-system
Elliot
Comprehensive and Rigorous Framework for Reproducible Recommender Systems Evaluation
Stars: ✭ 49 (+53.13%)
Mutual labels:  matrix-factorization, recommender-system
Rectorch
rectorch is a pytorch-based framework for state-of-the-art top-N recommendation
Stars: ✭ 121 (+278.13%)
Mutual labels:  matrix-factorization, recommender-system
Rsparse
Fast and accurate machine learning on sparse matrices - matrix factorizations, regression, classification, top-N recommendations.
Stars: ✭ 145 (+353.13%)
Mutual labels:  matrix-factorization, recommender-system
Implicit
Fast Python Collaborative Filtering for Implicit Feedback Datasets
Stars: ✭ 2,569 (+7928.13%)
Mutual labels:  matrix-factorization, recommender-system
Polara
Recommender system and evaluation framework for top-n recommendations tasks that respects polarity of feedbacks. Fast, flexible and easy to use. Written in python, boosted by scientific python stack.
Stars: ✭ 205 (+540.63%)
Mutual labels:  matrix-factorization, recommender-system


RetailBox

🛍️ Machine Learning eCommerce Recommender System

Overview

RetailBox is a recommender system that uses machine learning to make recommendations based off of a user's past purchase history. This project was inspired by Amazon and their recommender system techology. In this system we use Collaborative Filtering based off of implicit user data.

Dataset

The dataset we used is the UCI Online Retail Dataset. This dataset has 25900 transactions, with each transaction containing 20 features and these transactions were made by 4,300 users.

Training/Test Split

The way we split the data was by time. In this scenario, our system makes recommendations based on implicit user data from the past so this is how we split our data.

Context of Recommendation Scenario

In this recommender system, the context we used can be seen by the diagram below. Our main model to generate recommendations for a user and if a user bought an item our system recommended, then it was a success!

Installation

pip install retailbox

CLI

$ retailbox --help

  🛍️ Machine Learning eCommerce Recommender System

  Usage
    $ retailbox [<options> ...]

  Options
    --help, -h                Display help message
    --search, -s              Search customer by ID [Can be any integer 0-4338]
    --customer, -c <int>      Input customer ID [Can be any integer 0-4338]
    --info, -i                Display customer information
    --status, -s              Display process info
    --list, -l                List available customer IDs
    --version, -v             Display installed version

  Examples
    $ retailbox --help
    $ retailbox --search
    $ retailbox --customer 1028
    $ retailbox -c 1028
    $ retailbox -m 1028 --info
    $ retailbox -m 1028 -i --status

Usage

from retailbox.recommender import recommender

customer = 2874  # Customer ID
status = True   # Display status information of program while running

# Generate recommendations
recommender(
    customer_id=customer,
    status=status)

References

Attribution and Inspiration

Contributing

Contributions are always welcome! For bug reports or requests please submit an issue..

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].