Closed hzau96yhz closed 7 months ago
Hi! Good work! What does the following line of code do?It seems that self.gather_indexes are not defined https://github.com/chengkai-liu/Mamba4Rec/blob/d4d1fd64389f55684dfd62515ced4663f92a7476/mamba4rec.py#L65
self.gather_indexes
gather_indexes is a function is the class of SequentialRecommender. We import SequentialRecommender from RecBole: from recbole.model.abstract_recommender import SequentialRecommender.
gather_indexes
SequentialRecommender
from recbole.model.abstract_recommender import SequentialRecommender
Hi! Good work! What does the following line of code do?It seems that
self.gather_indexes
are not defined https://github.com/chengkai-liu/Mamba4Rec/blob/d4d1fd64389f55684dfd62515ced4663f92a7476/mamba4rec.py#L65