All Projects → Allianzcortex → Musicrecommendersystem

Allianzcortex / Musicrecommendersystem

Licence: apache-2.0
Django-Based Music Recommendation

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Musicrecommendersystem

Spirit
Spirit is a modern Python based forum built on top of Django framework
Stars: ✭ 1,045 (+533.33%)
Mutual labels:  forum, django
Misago
Misago is fully featured modern forum application that is fast, scalable and responsive.
Stars: ✭ 2,170 (+1215.15%)
Mutual labels:  forum, django
Niji
A pluggable Django forum APP
Stars: ✭ 173 (+4.85%)
Mutual labels:  forum, django
Djangobb
DjangoBB mirror. DjangoBB is a quick and simple forum which uses the Django Framework (written in Python language). Abbreviation DjangoBB stands for Django Bulletin Board. DjangoBB is distributed under the BSD license.
Stars: ✭ 232 (+40.61%)
Mutual labels:  forum, django
Lbforum
LBForum is a forum engine written in Python using Django
Stars: ✭ 594 (+260%)
Mutual labels:  forum, django
Forum
Django forum clone from F2E.im support SAE
Stars: ✭ 252 (+52.73%)
Mutual labels:  forum, django
Rengorum
🚀 Forum app built in React, Redux & Django
Stars: ✭ 194 (+17.58%)
Mutual labels:  forum, django
Django Djeddit
Minimalistic Reddit clone developed as a Django reusable app
Stars: ✭ 32 (-80.61%)
Mutual labels:  forum, django
Nsloger
A forum based on Django
Stars: ✭ 59 (-64.24%)
Mutual labels:  forum, django
Cheatsheets.pdf
📚 Various cheatsheets in PDF
Stars: ✭ 159 (-3.64%)
Mutual labels:  django
Django Grpc Framework
gRPC for Django.
Stars: ✭ 162 (-1.82%)
Mutual labels:  django
Django Herald
A Django messaging library
Stars: ✭ 159 (-3.64%)
Mutual labels:  django
Maas
Official MAAS repository mirror (may be out of date). Development happens in Launchpad (https://git.launchpad.net/maas/).
Stars: ✭ 160 (-3.03%)
Mutual labels:  django
Visual Chatbot
☁️ 👀 💬 Visual Chatbot
Stars: ✭ 161 (-2.42%)
Mutual labels:  django
Django Vue Admin
基于RBAC模型权限控制的中小型应用的基础开发平台,前后端分离,后端采用django+django-rest-framework,前端采用vue+ElementUI,移动端采用uniapp+uView(可发布h5和小程序).
Stars: ✭ 157 (-4.85%)
Mutual labels:  django
Dissemin
This repository has migrated to https://gitlab.com/dissemin/dissemin
Stars: ✭ 163 (-1.21%)
Mutual labels:  django
Cs Unplugged
A collection of free teaching material that teaches Computer Science through engaging games and puzzles that use cards, string, crayons and lots of running around.
Stars: ✭ 158 (-4.24%)
Mutual labels:  django
Django Hordak
Double entry accounting in Django
Stars: ✭ 159 (-3.64%)
Mutual labels:  django
Jmeter Control Center
Online web application-dashboard for report analyzing,running and online monitoring of load tests started with JMeter
Stars: ✭ 164 (-0.61%)
Mutual labels:  django
Django Material Admin
Material design for django administration
Stars: ✭ 163 (-1.21%)
Mutual labels:  django

What is it ?

  • This is a recommendation system based on Django

  • Mainly there are 3 algorithms uses:

a. UserCF(User-based Collaborative Flitering)

b. ItemCF(Item-based Collaborative Filtering)

c. LFM(Latent Factor Model)

This project mainly uses ItemCF as the recommend algorithm.

Project

Following the traditional MVC(Model/View/Control) architecture

Data Visualization

Google's highcharts library

data_visualization

recommend_item

recommend_result

The recommend principle is If more people like item A and item B at the same time, then item A and item B have obvious similarities.

In short, the basic similarity is calculated by a complex formula. You can the the implementation of codes in here

        for userID, items in trainset.items():
            for i in items:
                counter.setdefault(i, 0)
                counter[i] += 1
                simitems = simMatrix.setdefault(i, {})
                for j in items:
                    if not i == j:
                        simitems.setdefault(j, 0)
                        simitems[j] += 1

        for i, simitems in simMatrix.items():
            for j in simitems:
                simMatrix[i][j] /= math.sqrt(counter[i] * counter[j])

Crawl Data

A very important part of the recommender system is to get accumulation data from scratch called cold start.

The project used requests to build a multi-threaded crawler that extractedf Baidu music, kugou music, kuwoo music. After data cleaning (Removing the urls that are already dead links, there was a total of 100000 records used as train dataset.

Each music record includes UserID, music, url, rating. And the rating is based on the number of comments.

`0-500` : `1 point`
`500-1000` : `2 points`
`1000-2000` : `3 points`
`2000-3000` : `4 points`
`3000-more` : `5 points`(i.e. most popular)

Build real website
  • BackEnd: Django
  • FrontEnd: Bootstrap + JQuery(Ajax)
  • Deploy : Nginx+Gunicorn+Supervisor
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].