Skip to content
Advertisement

TypeError: Input ‘y’ of ‘Mul’ Op has type float32 that does not match type int64 of argument ‘x’

after this code i am getting the error in categoricalfocalloss i m not getting whereint64 error is coming

JavaScript

model description here in this code , in the loss categoricalfocal loss is used

JavaScript

here in the model i used categorical focal loss when i run this ,in train dataset i am not getting how tcovert itintointoint64

JavaScript

error is got is mentioned below

JavaScript

Advertisement

Answer

The error points to this line of code:

JavaScript

and is being thrown from the multiply function in math_ops.py within the tensorflow package. Digging into that file I found this summary for the argument requirements.

JavaScript

Looking back at the error

JavaScript

This means that -y_true is 'x' and K.log(y_pred) is 'y'. To perform this operations you’ll have to cast -y_true to a float32 or cast K.log(y_pred) to an int64 or cast them both into any other type as long as they match. .

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement