In the training example in Keras documentation,
https://keras.io/getting-started/sequential-model-guide/#training
binary_crossentropy is use
In categorical cross entropy :
prediction
it will compute the cross entropy
directlylogit
it will apply softmax_cross entropy with logit
In Binary cross entropy:
prediction
it will convert it back to logit
then apply sigmoied cross entropy with logit
logit
it will apply sigmoied cross entropy with logit
directly