4 रिपॉजिटरी
Modeling techniques for datasets containing only positive interactions without explicit negative ratings.
Distinct from Recommendation Models: Focuses on implicit signal training (WARP, BPR) versus general preference prediction architectures
Explore 4 awesome GitHub repositories matching artificial intelligence & ml · Implicit Feedback Modeling. Refine with filters or upvote what's useful.
LightFM एक Python रिकमेंडेशन लाइब्रेरी और मशीन लर्निंग फ़्रेमवर्क है जिसे यूजर की प्राथमिकताओं की भविष्यवाणी करने के लिए डिज़ाइन किया गया है। यह एक हाइब्रिड रिकमेंडेशन इंजन लागू करता है जो यूजर-आइटम इंटरैक्शन डेटा को वर्णनात्मक मेटाडेटा के साथ एकीकृत करके सहयोगी फ़िल्टरिंग (collaborative filtering) को कंटेंट फ़िल्टरिंग के साथ जोड़ता है। यह सिस्टम उपयोगकर्ताओं और आइटम्स के लेटेंट रिप्रेजेंटेशन को सीखने के लिए हाइब्रिड मैट्रिक्स फ़ैक्टराइज़ेशन का उपयोग करता है। इसे विशेष रूप से इम्प्लिसिट फ़ीडबैक को संभालने के लिए डिज़ाइन किया गया है, जो नकारात्मक रेटिंग की कमी वाले डेटासेट के लिए आइटम प्राथमिकताओं को ऑप्टिमाइज़ करने के लिए Weighted Approximate Rank Pairwise और Bayesian Personalized Ranking जैसे विशेष लॉस फ़ंक्शंस का उपयोग करता है। यह लाइब्रेरी स्टोकेस्टिक ग्रेडिएंट डिसेंट के माध्यम से मॉडल्स को ट्रेन करने, आइटम प्राथमिकता भविष्यवाणियों की गणना करने और मॉडल परिशुद्धता का मूल्यांकन करने के लिए टूल्स प्रदान करती है। यह इंटरैक्शन मैट्रिसेस को फ़ीचर एम्बेडिंग्स के साथ सिंथेसाइज़ करके व्यक्तिगत आइटम रैंकिंग और यूजर बिहेवियर प्रेडिक्शन को सपोर्ट करती है।
Designed to handle implicit feedback using specialized loss functions for datasets lacking negative ratings.
RecBole is a PyTorch-based recommendation framework designed for building, training, and evaluating a wide variety of recommendation algorithms. It serves as a standardized benchmark environment that allows for the comparison of different model architectures using public datasets and consistent evaluation metrics. The project provides specialized toolkits for sequential recommendation and knowledge-graph integration, enabling the prediction of item sequences based on user history or the incorporation of structured external knowledge. It includes a dedicated hyperparameter optimization engine
Generates negative samples from unobserved interactions when training on unlabeled data.
Implicit is a Python recommendation engine and matrix factorization library designed for collaborative filtering. It implements predictive models that analyze implicit feedback to estimate user preferences and generate personalized item recommendations without requiring explicit ratings. The library utilizes native-code execution and multi-core parallelized processing to decompose large interaction matrices into latent factors. It incorporates approximate nearest neighbor indexing to accelerate high-dimensional similarity lookups and reduce recommendation latency. The framework covers prefer
Implements predictive models specifically designed to analyze implicit user behavior patterns without requiring explicit ratings.
Neural collaborative filtering is a recommendation system framework that predicts user item preferences from implicit feedback by combining generalized matrix factorization and multi-layer perceptron networks through a shared final embedding layer. It captures both linear and non-linear interactions to model user preferences from historical data. The framework executes training and evaluation runs through a configuration-driven pipeline accessible via command-line interfaces, parsing hyperparameters such as learning rates, batch sizes, and latent dimensions. It optimizes implicit feedback mod
Prepares user history and interaction logs into training ratings and negative samples for implicit feedback recommendation pipelines.