rindow / rindow-neuralnetworks

Neural networks library for machine learning on PHP
https://rindow.github.io/neuralnetworks
BSD 3-Clause "New" or "Revised" License
74 stars 10 forks source link

How to use it to make ranking value for searches results ??? #4

Open chegmarco1989 opened 1 year ago

chegmarco1989 commented 1 year ago

Hello.

I want to make ranking for search engine requests with this Rindow Package. Does any tutorial could help to make search (results) classification based on this library ???

Thanks for your answer. Awaiting.

yuichiis commented 1 year ago

Hello.

If you are a programmer, you can easily create a text classification model.

Here is how to use tokenizer and embedding

How to use weight learning and categorical loss here

If you don't understand, you need to learn about vectorizing text. Once you learn how to build a corpus, building text taxonomies is a piece of cake.

I have no knowledge of search ranking models. I'm not sure but you should study "A Deep Relevance Matching Model for Ad-hoc Retrieval"

Good luck.