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
Describe the bug
I am trying to run some models. I have been able to successfully run ItemkNN, SLIMElastic, and BPR. However, when I want to run for LightGCN, it give the following error.
Error:
** Traceback (most recent call last):
File "/content/RecBole/run_recbole.py", line 46, in
run(
File "/content/RecBole/recbole/quick_start/quick_start.py", line 52, in run
res = run_recbole(
File "/content/RecBole/recbole/quick_start/quick_start.py", line 137, in run_recbole
model = get_model(config["model"])(config, train_data._dataset).to(config["device"])
File "/content/RecBole/recbole/model/general_recommender/lightgcn.py", line 76, in init
self.norm_adj_matrix = self.get_norm_adj_mat().to(self.device)
File "/content/RecBole/recbole/model/general_recommender/lightgcn.py", line 111, in get_norm_adj_mat
A._update(data_dict)
AttributeError: 'dok_matrix' object has no attribute '_update'. Did you mean: 'update'?**
similarly for MF, I get the following error:
Error: ValueError: model_name [MF] is not the name of an existing model.
Attached screenshot for both the errors. Thanks in advance
The text was updated successfully, but these errors were encountered:
Describe the bug
I am trying to run some models. I have been able to successfully run ItemkNN, SLIMElastic, and BPR. However, when I want to run for LightGCN, it give the following error.
Error:
** Traceback (most recent call last):
File "/content/RecBole/run_recbole.py", line 46, in
run(
File "/content/RecBole/recbole/quick_start/quick_start.py", line 52, in run
res = run_recbole(
File "/content/RecBole/recbole/quick_start/quick_start.py", line 137, in run_recbole
model = get_model(config["model"])(config, train_data._dataset).to(config["device"])
File "/content/RecBole/recbole/model/general_recommender/lightgcn.py", line 76, in init
self.norm_adj_matrix = self.get_norm_adj_mat().to(self.device)
File "/content/RecBole/recbole/model/general_recommender/lightgcn.py", line 111, in get_norm_adj_mat
A._update(data_dict)
AttributeError: 'dok_matrix' object has no attribute '_update'. Did you mean: 'update'?**
similarly for MF, I get the following error:
Error:
ValueError:
model_name
[MF] is not the name of an existing model.Attached screenshot for both the errors. Thanks in advance
The text was updated successfully, but these errors were encountered: