-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Error in running triplet_movielens.py #16
Comments
based on https://stackoverflow.com/questions/43160181/keras-merge-layer-warning """ from future import print_function import numpy as np from keras import backend as K def identity_loss(y_true, y_pred):
def bpr_triplet_loss(X):
def build_model(num_users, num_items, latent_dim):
|
for those who are encountering this issue, > TypeError: ('Keyword argument not understood:', 'input') the solution is to remove keywords in Model function. so the fixed code will be look like this. model = Model( source: https://stackoverflow.com/questions/60690327/typeerror-keyword-argument-not-understood-inputs |
I am trying to run triplet_movielens.py with the same movielens dataset and I get the following error.
Using TensorFlow backend.
Traceback (most recent call last):
File "triplet_movielens.py", line 80, in
model = build_model(num_users, num_items, latent_dim)
File "triplet_movielens.py", line 58, in build_model
output_shape=(1, ))
TypeError: 'module' object is not callable
I am stuck and I need help.
The text was updated successfully, but these errors were encountered: