Neural Network based ranking of documents

后端 未结 6 583
北海茫月
北海茫月 2021-01-31 00:41

I\'m planning of implementing a document ranker which uses neural networks. How can one rate a document by taking in to consideration the ratings of similar articles?. Any good

6条回答
  •  逝去的感伤
    2021-01-31 01:04

    If I understand correctly, your task is something related to Collaborative filtering. There are many possible approaches to this problem; I suggest you follow the wikipedia page to have an overview of the main approaches you can choose.

    For your project work I can suggest looking at Python based intro to Neural Networks with a simple BackProp NN implementation and a classification example. This is not "the" solution, but perhaps you can build your system out of that example without the need for a bigger framework.

提交回复
热议问题