Content Based Music Recommendation Service
Visit the website »
View Demo
·
Report Bug
·
Request Feature
reZonance is a Content Based Recommendation Service which suggests songs similar to the one chosen by the user. It has approximately 160,000 songs in its database and takes about 300ms to generate recommendations.
Content-based filtering uses item features to recommend other items similar to what the user likes, based on their previous actions or explicit feedback.
Cosine similarity measures the similarity between two vectors by calculating the cosine of the angle between them. A simple visualization and the formula can be found below.
Recommendation engines that run on collaborative filtering recommend each item (products advertised on your site) based on user actions. The more user actions an item has, the easier it is to tell which user would be interested in it and what other items are similar to it. As time progresses, the system will be able to give more and more accurate recommendations.
This, however, brings a major contradiction and difficulty to classified sites and their recommendation engines. Even though a new song can actually be the the most relevant one to a user, a recommendation system has far less confidence in recommending them than it has with older songs, but it’s just simply not a good idea to let songs ads dominate the recommendation process.
Similarly newer users cannot be provided with accurate recommendations until the user has made few choices himself/herself which will tune the recommendation algorithm.
To get a local copy up and running follow these simple example steps.
- React
- Python 3.6+
- Clone the repo
git clone https://github.com/radioactive11/rezonance
- Install requirements
pip3 install -r requirements.txt
- Start Flask server (by default at
localhost:5000
)
python3 app.py
- Clone the repo
git clone https://github.com/radioactive11/rezonance
- Install required packages
cd client
npm install
- Start React Development server (by default at
localhost:3000
)
npm start
-
Visit the website and click on get started
NOTE: some songs do not have a preview due to copyright issues.
See the open issues for a list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Arijit Roy - GitHub - roy.arijit2001@gmail.com
Kartik Goel - GitHub - goel.kartik39@gmail.com
Website: https://rezonance.vercel.app
Thank You StackOverflow 😅