-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] SARSingleNode deprecated #989
Comments
Hi @konabuta, the constructor of In the notebook, it looks there is no Hope this clarifies. |
I found the following code in this notebook. I don't add by myself. model = SARSingleNode(
remove_seen=True, similarity_type="jaccard",
time_decay_coefficient=30, time_now=None, timedecay_formula=True, **header
) Could you check again ? Thanks, |
good catch @kanobuta, you are right, we need to change that. The correct code would be:
We would do a PR fixing this soon |
@miguelgfierro Thank you for your confirmation ! I want to contribute to this repo directly next time :) |
@konabuta that would be fantastic, feel free to take any issue or bug in the list https://github.com/microsoft/recommenders/issues. And thanks again for finding the bug |
Description
sar_movielens_with_azureml.ipynb failed with error. It is because of SARSingleNode doesn't accept
remove_seen
.In which platform does it happen?
Azure Machine Learning Notebook VM
How do we replicate the issue?
I followed this link Getting Started to install Python(reco) kernel. I just run the sar_movielens_with_azureml.ipynb.
You will get the error message like
Error occurred: User program failed with TypeError: __init__() got an unexpected keyword argument 'remove_seen'
Expected behavior (i.e. solution)
Training script should pass successfully
Other Comments
I attached my notebook that works. I changed the following code.
remove_seen
tomodel.recommend_k_items
methodIf there's no problem in my proposed chanage, I want to contribute to this project. Please provide label.
sar_movielens_with_azureml.ipynb.zip
The text was updated successfully, but these errors were encountered: