sir_thursday
sir_thursday

Reputation: 5409

Finding the implementation of Tensorflow's softmax_cross_entropy_with_logits

I'm using Tensorflow's softmax_cross_entropy_with_logits in a neural net I'm building, and am looking for the function's source. It doesn't seem to be defined in the GitHub repo (https://github.com/tensorflow/tensorflow), only imported & used from a separate module. What's the easiest way to examine the source?

Upvotes: 0

Views: 634

Answers (1)

keveman
keveman

Reputation: 8487

The Python wrapper is here. The C++ implementation for the operation can be found here.

Upvotes: 1

Related Questions