I want to use a logistic loss cost function for my deep learning model to solve a binary classification problem. I am using keras to build the model. However, keras doesn't have any pre-defined logistic loss function.
While reading about loss functions I came across confusing statements about cross entropy loss and logistic loss. In this wikipedia article, there is a separate section for logistic loss and cross entropy loss.
However in this wikipedia article, its mentioned that:
The logistic loss is sometimes called cross-entropy loss.
Additionally, this sklearn page starts with:
Log loss, aka logistic loss or cross-entropy loss.
Any help would be appreciated.