public static KerasSymbol BinaryAccuracy(KerasSymbol y_true, KerasSymbol y_pred) { return(K.Mean(K.Equal(y_true, K.Round(y_pred)), axis: -1)); }