Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for normalization (0.17 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            where:
            scheduled << [true, false]
        }
    
        String duplicatorTransform(Map options = [:]) {
            def normalization = options.normalization ?: ""
            boolean incremental = options.incremental ?: false
            """
                import java.nio.file.Files
    
                abstract class Duplicator implements TransformAction<Parameters> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    INTERSPEECH, 2014.
    The coupling of input and forget gate (CIFG) is based on:
    http://arxiv.org/pdf/1503.04069.pdf
    Greff et al. 'LSTM: A Search Space Odyssey'
    The layer normalization is based on:
    https://arxiv.org/pdf/1607.06450.pdf
    Ba et al. 'Layer Normalization'
      }];
    
      let arguments = (
        ins TFL_TensorOf<[F32, QI8, QI16]>:$input,
    
        // Weights
        TFL_TensorOfOrNone<[F32, QI8]>:$input_to_input_weights,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            output.count("Transforming") == 1
            output.contains("files: [lib.jar]")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/16962")
        def "transforms registering the input as an output can use normalization"() {
            file("input1.jar").text = "jar"
            file("input2.jar").text = "jar"
            buildFile("""
                configurations {
                    api1 {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize.cc

      LogicalResult matchAndRewrite(TFL::MulOp mul_op,
                                    PatternRewriter &rewriter) const override {
        // Mul. Required 1-D rhs for batch normalization.
        DenseElementsAttr gamma_cst;
        Value gamma = mul_op.getRhs();
        if (!matchPattern(gamma, m_Constant(&gamma_cst))) return failure();
        if (gamma_cst.getType().getRank() != 1) return failure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        if (is_layer_norm_lstm) {
          const auto forget_layer_norm_coefficients =
              op.getForgetLayerNormCoefficients().getType().cast<ShapedType>();
          // If this lstm has layer normalization, this input value,
          // "forget_layer_norm_coefficients" should be a 1D tensor.
          if (!forget_layer_norm_coefficients.hasRank() ||
              forget_layer_norm_coefficients.getRank() != 1 ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.5.md

    * Update gcr.io/google-containers/rescheduler to v0.2.2, which uses busybox as a base image instead of ubuntu. ([#41911](https://github.com/kubernetes/kubernetes/pull/41911), [@ixdy](https://github.com/ixdy))
    * restored normalization of custom `--etcd-prefix` when `--storage-backend` is set to etcd3 ([#42506](https://github.com/kubernetes/kubernetes/pull/42506), [@liggitt](https://github.com/liggitt))
    
    
    
    # v1.5.5
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
Back to top