paper-with-me

Papers

Perceptron Collaborative Filtering

2024-06-17 · Arya Chakraborty

While multivariate logistic regression classifiers are a great way of implementing collaborative filtering - a method of making automatic predictions about the interests of a user by collecting preferences or taste information from many other users, we can also achieve similar results using neural networks. A recommender system is a subclass of information filtering system that provide suggestions for items that are most pertinent to a particular user. A perceptron or a neural network is a machine learning model designed for fitting complex datasets using backpropagation and gradient descent. When coupled with advanced optimization techniques, the model may prove to be a great substitute for classical logistic classifiers. The optimizations include feature scaling, mean normalization, regularization, hyperparameter tuning and using stochastic/mini-batch gradient descent instead of regular gradient descent. In this use case, we will use the perceptron in the recommender system to fit the parameters i.e., the data from a multitude of users and use it to predict the preference/interest of a particular user.

📄 PDF Abstract BibTeX arXiv:2407.00067

Code (0)

등록된 구현이 없습니다.

Tasks

Collaborative FilteringRecommendation Systems

Methods 이 논문이 사용한 방법론

Logistic Regression Logistic Regression, despite its name, is a linear model for classification rather than regression. Logistic regression is also known in the literature as logit regression,…

Similar Papers 제목 키워드 기반

A Survey on Deep Neural Networks in Collaborative Filtering Recommendation Systems

2024-12-02 · Pang Li, Shahrul Azman Mohd Noah, Hafiz Mohd Sarim

This survey provides an examination of the use of Deep Neural Networks (DNN) in Collaborative Filtering (CF) recommendation systems. As the digital world increasingly relies on data-driven approaches, traditional CF tech…

Collaborative FilteringRecommendation SystemsSurvey

Neural Collaborative Filtering vs. Matrix Factorization Revisited

2020-05-19 · Steffen Rendle, Walid Krichene, Li Zhang, John Anderson

Embedding based models have been the state of the art in collaborative filtering for over a decade. Traditionally, the dot product or higher order equivalents have been used to combine two or more embeddings, e.g., most …

Collaborative FilteringLink PredictionRetrieval

Neural Collaborative Filtering

2017-08-16 · WWW 2017 4 · Xiangnan He, Lizi Liao, Hanwang Zhang, Liqiang Nie 외

In recent years, deep neural networks have yielded immense success on speech recognition, computer vision and natural language processing. However, the exploration of deep neural networks on recommender systems has recei…

Collaborative FilteringRecommendation Systems

BERT-Based Neural Collaborative Filtering and Fixed-Length Contiguous Tokens Explanation

2020-12-01 · Asian Chapter of the Association for Computational Linguistics 2020 · Reinald Adrian Pugoy, Hung-Yu Kao

We propose a novel, accurate, and explainable recommender model (BENEFICT) that addresses two drawbacks that most review-based recommender systems face. First is their utilization of traditional word embeddings that coul…

Collaborative FilteringRecommendation SystemsWord Embeddings

Unsupervised Extractive Summarization-Based Representations for Accurate and Explainable Collaborative Filtering

2021-08-01 · ACL 2021 5 · Reinald Adrian Pugoy, Hung-Yu Kao

We pioneer the first extractive summarization-based collaborative filtering model called ESCOFILT. Our proposed model specifically produces extractive summaries for each item and user. Unlike other types of explanations,…

Collaborative FilteringExtractive SummarizationSentenceSentence Embeddings+1