Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for SigmoidGrad (0.14 sec)

  1. tensorflow/compiler/jit/tests/opens2s_gnmt_mixed_precision.golden_summary

     BroadcastGradientArgs 4
     ConcatOffset 1
     ConcatV2 14
     Const 199
     DynamicStitch 1
     FloorDiv 1
     MatMul 20
     Maximum 1
     Mul 74
     NoOp 13
     Reshape 86
     RsqrtGrad 1
     Select 36
     SigmoidGrad 24
     Slice 32
     StridedSlice 2
     Sub 1
     Sum 11
     TanhGrad 17
     Tile 2
     ZerosLike 1
    cluster 16 size 22
     Add 2
     BiasAdd 1
     ConcatV2 1
     Const 3
     GreaterEqual 1
     MatMul 1
     Mul 3
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 06 10:38:14 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/math_grad.cc

      // evaluated.
      Scope grad_scope = scope.WithControlDependencies(grad);
      auto y = ConjugateHelper(grad_scope, op.output(0));
      grad_outputs->push_back(internal::SigmoidGrad(grad_scope, y, grad));
      return grad_scope.status();
    }
    REGISTER_GRADIENT_OP("Sigmoid", SigmoidGrad);
    
    Status SignGrad(const Scope& scope, const Operation& op,
                    const std::vector<Output>& grad_inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    // =============================================================================
    
    func.func @sigmoidGrad(%arg0: tensor<?x32xf32>, %arg1: tensor<?x32xf32>) -> tensor<?x32xf32> {
      %0 = "tf.SigmoidGrad"(%arg0, %arg1) : (tensor<?x32xf32>, tensor<?x32xf32>) -> tensor<?x32xf32>
      func.return %0 : tensor<?x32xf32>
    // CHECK-LABEL: sigmoidGrad
    // CHECK-NEXT: [[ONE:%.+]] = arith.constant dense<1.000000e+00> : tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK-DAG: [[SUB:%.+]] =  mhlo.subtract [[ONE]], %arg0 : tensor<2xf32>
      // CHECK-DAG: [[MUL1:%.+]] =  mhlo.multiply [[MUL0]], [[SUB]] : tensor<2xf32>
      // CHECK: return [[MUL1]]
      %0 = "tf.SigmoidGrad"(%arg0, %arg1) : (tensor<2xf32>, tensor<2xf32>) -> tensor<2xf32>
      func.return %0 : tensor<2xf32>
    }
    
    // -----
    
    // CHECK-LABEL: @sigmoid_grad_complex
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        static bool isCompatibleReturnTypes(TypeRange inferred, TypeRange actual) {
          return ArraysAreCastCompatible(inferred, actual);
        }
      }];
    }
    
    def TF_SigmoidGradOp : TF_Op<"SigmoidGrad", [Pure, TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = "Computes the gradient of the sigmoid of `x` wrt its input.";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top