An open API service indexing awesome lists of open source software.

https://github.com/jalajthanaki/basic_ecommerce_recomendation_system

This repository contains the code for basic kind of E-commerce recommendation engine. By using the concept of TF-IDF and cosine similarity, we have built this recommendation engine.
https://github.com/jalajthanaki/basic_ecommerce_recomendation_system

cosine-similarity recommendation-system tf-idf-vectorizer

Last synced: 6 months ago
JSON representation

This repository contains the code for basic kind of E-commerce recommendation engine. By using the concept of TF-IDF and cosine similarity, we have built this recommendation engine.

Awesome Lists containing this project

README

          

# E-commerce Recommendation engine

This repository contains the code for basic kind of E-commerce recommendation engine. By using the concept of TF-IDF and cosine similarity, we have built this recommendation engine.

## Data
For this project we are using [this dataset](https://www.kaggle.com/cclark/product-item-data/data). This dataset contains data from the 500 actual SKUs from an outdoor apparel brand's product catalog.

## Dependencies and Installation
We need the following dependencies.

* Pandas: `sudo pip install pandas`
* Sci-kit Learn (sklearn): `sudo pip install -U scikit-learn`
* Jupyter Notebook: `$ sudo pip install jupyter `

## Usage
You need to run the jupyter notebook `Basic_content_based_recommendation_system.ipynb`

## credit
The code of is this repository is inspired by the [Groveco's](https://github.com/groveco/content-engine) content based recommendation engine.