We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
请问针对utils/data_loader.py,第69行的注释# including items + users是否应该改为# including items?因为变量n_entities不应该包括users,只包括items和其他entities。
utils/data_loader.py
# including items + users
# including items
n_entities = max(max(triplets[:, 0]), max(triplets[:, 2])) + 1 # including items + users n_nodes = n_entities + n_users
->
n_entities = max(max(triplets[:, 0]), max(triplets[:, 2])) + 1 # including items n_nodes = n_entities + n_users
The text was updated successfully, but these errors were encountered:
No branches or pull requests
请问针对
utils/data_loader.py
,第69行的注释# including items + users
是否应该改为# including items
?因为变量n_entities不应该包括users,只包括items和其他entities。->
The text was updated successfully, but these errors were encountered: