You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that in this function, the following is used:
for index in item_list:
title = item_attribute['title'][index]
genre = item_attribute['genre'][index]
...
to extract items that the user has interacted with, where index represents the item IDs that the user interacted with. However, this extracts the information of the item at the index-th position in the list, whereas logically, the correct approach would be to extract the item where id=index. Could this be a bug?