Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for log10 (0.13 sec)

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

        /* Given upstream grad U and a Log1p op: Y = log(1 + X), the gradients are:
         *
         *    dX = U / (1 + X)
         *
         */
    
        AbstractTensorHandle* upstream_grad = grad_outputs[0];
        AbstractTensorHandle* X = forward_inputs_[0];
    
        AbstractTensorHandle* temp_output;
    
        // Calculate conjugate of X
        std::string name = "Conj_Log1p_Grad_X";
    C++
    - Registered: Tue Mar 26 12:39:09 GMT 2024
    - Last Modified: Wed Feb 28 13:53:47 GMT 2024
    - 15.2K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/gradients/math_grad_test.cc

    }
    
    Status Log1pModel(AbstractContext* ctx,
                      absl::Span<AbstractTensorHandle* const> inputs,
                      absl::Span<AbstractTensorHandle*> outputs) {
      return ops::Log1p(ctx, inputs[0], &outputs[0], "Log1p");
    }
    
    Status DivNoNanModel(AbstractContext* ctx,
                         absl::Span<AbstractTensorHandle* const> inputs,
                         absl::Span<AbstractTensorHandle*> outputs) {
    C++
    - Registered: Tue Mar 26 12:39:09 GMT 2024
    - Last Modified: Thu Apr 13 17:32:14 GMT 2023
    - 16.3K bytes
    - Viewed (0)
  3. RELEASE.md

            `tf.math.greater`, `tf.math.greater_equal`, `tf.math.igamma`,
            `tf.math.igammac`, `tf.math.invert_permutation`, `tf.math.less`,
            `tf.math.less_equal`, `tf.math.lgamma`, `tf.math.log`, `tf.math.log1p`,
            `tf.math.logical_and`, `tf.math.logical_not`, `tf.math.logical_or`,
            `tf.math.maximum`, `tf.math.minimum`, `tf.math.not_equal`,
            `tf.math.polygamma`, `tf.math.reciprocal`, `tf.math.rint`,
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top