The Wayback Machine - https://web.archive.org/web/20220428053925/https://github.com/topics/recommender-system
Skip to content
#

recommender-system

Here are 2,569 public repositories matching this topic...

R7788380
R7788380 commented Nov 24, 2020

作者您好,關於 AttRec 這份模型我有些疑問,就是在預測時會使用到 Next positive item 的 embedding,照理來說預測時是不能夠把真正的 Next positive item 輸入給模型,這樣等於是把正確答案丟給模型,請問真正在預測時,要如何得到 pos_scoresneg_scores 呢 ?

以下是程式碼中使用到 pos_embed 時,會讓我產生的疑問:

 # combine
 pos_scores = self.w * tf.reduce_sum(tf.multiply(short_interest, pos_embed), axis=-1, keepdims=True) \+ 
                        (1 - self.w) * tf.reduce_sum(pos_long_intere
good first issue
qdrant
generall
generall commented Dec 28, 2021

Is your feature request related to a problem? Please describe.
There are cases, when it might be useful to know how much points are there in index, which satisfies some filtering condition.
Currently, we can only estimate a total amount of points.

Describe the solution you'd like
Create an API which returns amount of points (estimated or precise, depending on flag) for a given filter

enhancement good first issue

Improve this page

Add a description, image, and links to the recommender-system topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the recommender-system topic, visit your repo's landing page and select "manage topics."

Learn more