You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I seek to optimize an ensemble for binary classification. My established baseline uses the binary_crossentropy loss provided by keras. Using the same notation yields unsupported callable, because it seems the base_head.Head()does not tie into the default tf implementation.
What can I do train with the binary crossetropy?
The text was updated successfully, but these errors were encountered:
Well, I figured that out in the meantime.
But a problem persists: BinaryClassHead It uses the correct loss but when I predict using a simple_dnn AdaNet of three iterations via estimator.predict() the network always predicts with class 0.
The same head works on the canned tf.estimator.LinearClassifier which I would suspect to be a problem regarding an incorrect loss function. I can't troubleshoot the AdaNet estimator any deeper than this. I will take any help I can!
Hi all,
I seek to optimize an ensemble for binary classification. My established baseline uses the
binary_crossentropy
loss provided bykeras
. Using the same notation yieldsunsupported callable
, because it seems thebase_head.Head()
does not tie into the default tf implementation.What can I do train with the binary crossetropy?
The text was updated successfully, but these errors were encountered: