LeavingSeason
LeavingSeason
I am updating the examples/00_quick_start/sequential_recsys_amazondataset.ipynb and add a serving example at the end of the notebook, hope this can help you. https://github.com/microsoft/recommenders/pull/1254
@Chen-Cai-OSU ImplicitCF should have filter out negative ratings (which happens in the function _data_processing). It is strange that you got the same result when you change all rating score from...
Hi there sorry that it seems I cannot receive notifications from github issues... in the future if you encounter something need my attention, welcome to send emails to me via...
I am updating the examples/00_quick_start/sequential_recsys_amazondataset.ipynb and add a serving example at the end of the notebook, hope this can help you. https://github.com/microsoft/recommenders/pull/1254
reduce_D and f_dim is about decomposing the filter matrix into two low-rank matrices. You can refer to the equation (9) in our paper. We have a updated version of implementation...
Good idea, I will add it asap.
I couldn't find the function of 'depthwise_conv1d'. Considering that conv1d is actually implemented via reshaping the input and then send it to conv2d, may be what you mentioned is exactly...
Yes, you are right, I have fixed this bug. Thanks!
It's a little trick. We found empirically that the performance is better via splitting direct connections (to output unit) and hidden layers to next stage.