Ошибка типа: Значение, переданное параметру «reduction_indices», имеет тип данных float32, которого нет в списке разрешенных значений: int32, int64
#tensorflow #keras #loss-function Вопрос: Я внедряю обычай loss для своей модели keras: def loss(self, y_true, y_pred): self.y_true = tf.convert_to_tensor(y_true) self.y_pred = tf.convert_to_tensor(y_pred) tf.print("====================") tf.print(y_pred) tf.print(y_true) tf.print("====================") s = K.mean(((self.y_true -…