Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Bioskop ML

The recommendations part of the Software Engineering Project, Bioskop.
The recommendations part of the Software Engineering Project, Bioskop. (https://github.com/pdhoot/Bioskop)

## What It Does?

Expand Down
17 changes: 17 additions & 0 deletions README.md~
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Bioskop ML

The recommendations part of the Software Engineering Project, Bioskop.

## What It Does?

Bioskop is a Movie Recommendation Engine based on Collaborative Filtering. On the basis of ratings received from other users and the movies rated by the given user, the user is shown movie recommendation. The recommendation generation script can be run multiple times a day depending on resource and data availability and generate the recommendations for the user. Currently we have implemented it using a relational database MySQL.

## Instructions to set up the database

1. Clone the repository
2. cd into `config/` and run the command `cp config.cfg.sample config.cfg`
3. Fill the `config.cfg` as per your mysql configuration.
4. cd into `schema/` and import the database schema named bioskop.sql into `phpMyAdmin`
5. `cd` into `scripts/` and run `python once.py`

That's it!