Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Softmax (0.22 sec)

  1. tensorflow/c/experimental/gradients/nn_grad.cc

                     absl::Span<AbstractTensorHandle*> grad_inputs) override {
        // Grad for Softmax Input
        TF_RETURN_IF_ERROR(BroadcastMul(
            ctx, grad_outputs[0], forward_outputs_[1],
            grad_inputs.subspan(0, 1)));  // upstream_grad * local softmax grad
    
        // Grad for labels is null
        grad_inputs[1] = nullptr;
        return absl::OkStatus();
      }
    C++
    - Registered: Tue Mar 26 12:39:09 GMT 2024
    - Last Modified: Wed Feb 28 13:53:47 GMT 2024
    - 5.7K bytes
    - Viewed (0)
  2. CONTRIBUTING.md

        For example, to run all tests under tensorflow/python, do:
    
        ```bash
        bazel test ${flags} //tensorflow/python/...
        ```
    
        For a single component e.g. softmax op:
    
        ```bash
        bazel test ${flags} tensorflow/python/kernel_tests/nn_ops:softmax_op_test
        ```
    
        For a single/parameterized test e.g. `test_capture_variables` in
        `tensorflow/python/saved_model/load_test.py`:
    
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Mar 21 11:45:51 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  3. RELEASE.md

    the tensorflow::ops namespace to tensorflow. * Change arg order for
    `{softmax,sparse_softmax,sigmoid}_cross_entropy_with_logits` to be (labels,
    predictions), and force use of named args. * tf.nn.rnn_cell.* and most functions
    in tf.nn.rnn.* (with the exception of dynamic_rnn and raw_rnn) are temporarily
    in tf.contrib.rnn. They will be moved back into core for TF 1.2. *
    `tf.nn.sampled_softmax_loss` and `tf.nn.nce_loss` have both changed their API
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Apr 03 20:27:38 GMT 2024
    - 727.4K bytes
    - Viewed (8)
Back to top