MetaRec icon indicating copy to clipboard operation
MetaRec copied to clipboard

PyTorch Implementations For A Series Of Deep Learning-Based Recommendation Models

Results 11 MetaRec issues
Sort by recently updated
recently updated
newest added

https://github.com/khanhnamle1994/MetaRec/blob/master/Autoencoders-Experiments/CDAE-PyTorch/DataUtils.py at line 55, 56 ```python num_items_by_user = data.groupby('user', as_index=False).size() num_users_by_item = data.groupby('item', as_index=False).size() ``` Does the as_index should be set to True because the later convert to pandas dataframe...