Replies: 1 comment
-
@Malitem sorry for the late reply. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have this kind of interactions table:
Here all the values in the label column are equal to 1. My understanding of the negative sampling parameter is that it would take this label 1s and would sample one negative item for each positive item. I am running a FM model with the following settings:
This gives me the following warning: WARNING No negative samples in y_true, false positive value should be meaningless recbole and the evaluation equal to nan.
You can probably guess that this label column was added by me manually. I have tried running the negative sampling without it but it didn't work. Specifically, since I have a mode: 'labeled' the error would pop up that there is no label feature. If I switch the mode to full, I get the error saying that the metrics are not made for the mode full. Yet I need these metrics since there is no ranking in my dataset.
There is probably something that I am doing wrong although I cannot find what. Some help would be much appreciated.
Beta Was this translation helpful? Give feedback.
All reactions