Source code for etudes.losses
from tensorflow.keras.losses import binary_crossentropy
[docs]def binary_crossentropy_from_logits(y_true, y_pred):
return binary_crossentropy(y_true, y_pred, from_logits=True)
from tensorflow.keras.losses import binary_crossentropy
[docs]def binary_crossentropy_from_logits(y_true, y_pred):
return binary_crossentropy(y_true, y_pred, from_logits=True)