What function defines accuracy in Keras when the loss is mean squared error (MSE)?
问题 How is Accuracy defined when the loss function is mean square error? Is it mean absolute percentage error? The model I use has output activation linear and is compiled with loss= mean_squared_error model.add(Dense(1)) model.add(Activation('linear')) # number model.compile(loss='mean_squared_error', optimizer='adam', metrics=['accuracy']) and the output looks like this: Epoch 99/100 1000/1000 [==============================] - 687s 687ms/step - loss: 0.0463 - acc: 0.9689 - val_loss: 3.7303 -