Tf.nn.sigmoid_cross_entropy_with_logits Companies About Arguments From Documentation
So I have the following model that I am wanting to test out an idea with. I am particularly interested in tf.nn.sigmoid_cross_entropy_with_logits() because my labels are not mutua
Solution 1:
The keyword argument labels
only exists in TensorFlow 1.0.0 and above. I guess you're using 0.12 or below. Use pip freeze
or print('TensorFlow version: {0}'.format(tf.__version__))
to check.
The documentation for prior versions can be found at https://www.tensorflow.org/versions/
To search for some information in the documentation of a previous version you can use: https://www.google.com/search?q=site:https://www.tensorflow.org/versions/r0.12+sigmoid_cross_entropy_with_logits()
Post a Comment for "Tf.nn.sigmoid_cross_entropy_with_logits Companies About Arguments From Documentation"