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
Even after going through the entire code of autoencoder_model I wasn't able to figure out the problem, but then I tried the following things as the error log displayed that there was a problem in calling the rev_loss function from full_loss definition:
Changing s_true, c_true = y_true[...,0:3], y_true[...,3:6] to s_true, c_true = y_true[:,:,:,0:3], y_true[:,:,:,3:6]. Similarly changing s_pred, c_pred = y_pred[...,0:3], y_pred[...,3:6] to s_pred, c_pred = y_pred[:,:,:,0:3], y_pred[:,:,:,3:6] in the full_loss function
In the full_loss function try changing s_loss = rev_loss(s_true, s_pred) to s_loss = beta * K.sum(K.square(s_true - s_pred))
the script used to run correctly, when i checked again lately i got this error
TypeError: 'list' object is not callable
on line
in training section
im not sure what's wrong with it
The text was updated successfully, but these errors were encountered: