Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for Mean (0.04 sec)

  1. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

    //
    // When is_training is set to true, the given variance and mean are not used.
    // In above calculation, they are replaced by new values. These new mean and
    // variance are calculated as following:
    // new_mean = mean(x, axis=[0, 1, 2])
    // new_variance = mean(squared_difference(x, new_mean), axis=[0, 1, 2])
    //
    // The DDR rule for the is_training equals true case is as following:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    // the specified mean.
    func fastexprand(mean int) int32 {
    	// Avoid overflow. Maximum possible step is
    	// -ln(1/(1<<randomBitCount)) * mean, approximately 20 * mean.
    	switch {
    	case mean > 0x7000000:
    		mean = 0x7000000
    	case mean == 0:
    		return 0
    	}
    
    	// Take a random sample of the exponential distribution exp(-mean*x).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

      // CHECK-DAG: %[[CST1:.*]] = arith.constant dense<1.000000e-03> : tensor<f32>
      // CHECK:  %[[MEAN:.*]] = "tf.Mean"(%arg0, %[[CST]]) <{keep_dims = false}> : (tensor<1x1x6x2xf32>, tensor<3xi32>) -> tensor<2xf32>
      // CHECK:  %[[SQ:.*]] = "tf.SquaredDifference"(%arg0, %[[MEAN]]) : (tensor<1x1x6x2xf32>, tensor<2xf32>) -> tensor<1x1x6x2xf32>
      // CHECK:  %[[MEAN0:.*]] = "tf.Mean"(%[[SQ]], %[[CST]]) <{keep_dims = false}> : (tensor<1x1x6x2xf32>, tensor<3xi32>) -> tensor<2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

            Returns:
              A map of: output key -> output result.
            """
            scale = [1.0] * self.out_channel_size
            offset = [0.5] * self.out_channel_size
            mean, variance = scale, offset
            out = nn_ops.depthwise_conv2d_native(
                input_tensor,
                self.filters,
                strides=[1, 2, 2, 1],
                dilations=[1, 1, 1, 1],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  5. docs/metrics/prometheus/grafana/minio-dashboard.json

          "options": {
            "colorMode": "value",
            "graphMode": "none",
            "justifyMode": "auto",
            "orientation": "auto",
            "reduceOptions": {
              "calcs": [
                "mean"
              ],
              "fields": "",
              "values": false
            },
            "showPercentChange": false,
            "text": {},
            "textMode": "auto",
            "wideLayout": true
          },
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  6. src/net/http/request.go

    			snapshot := *v
    			req.GetBody = func() (io.ReadCloser, error) {
    				r := snapshot
    				return io.NopCloser(&r), nil
    			}
    		default:
    			// This is where we'd set it to -1 (at least
    			// if body != NoBody) to mean unknown, but
    			// that broke people during the Go 1.8 testing
    			// period. People depend on it being 0 I
    			// guess. Maybe retry later. See Issue 18117.
    		}
    		// For client requests, Request.ContentLength of 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  7. src/go/printer/nodes.go

    	// initialize expression/key size: a zero value indicates expr/key doesn't fit on a single line
    	size := 0
    
    	// We use the ratio between the geometric mean of the previous key sizes and
    	// the current size to determine if there should be a break in the alignment.
    	// To compute the geometric mean we accumulate the ln(size) values (lnsum)
    	// and the number of sizes included (count).
    	lnsum := 0.0
    	count := 0
    
    	// print all list elements
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  8. tensorflow/cc/gradients/math_grad.cc

    }
    REGISTER_GRADIENT_OP("Sum", SumGrad);
    
    Status MeanGrad(const Scope& scope, const Operation& op,
                    const std::vector<Output>& grad_inputs,
                    std::vector<Output>* grad_outputs) {
      // The Mean gradient is just like the Sum gradient, except that
      // all gradients are also divided by the size of reduced groups.
      auto sum_grad = SumGradHelper(scope, op, 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)
  9. src/cmd/compile/internal/ssa/prove.go

    }
    
    // domain represents the domain of a variable pair in which a set
    // of relations is known. For example, relations learned for unsigned
    // pairs cannot be transferred to signed pairs because the same bit
    // representation can mean something else.
    type domain uint
    
    const (
    	signed domain = 1 << iota
    	unsigned
    	pointer
    	boolean
    )
    
    var domainStrings = [...]string{
    	"signed", "unsigned", "pointer", "boolean",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    ====
    
    However:
    
    - Gradle only supports verification of signatures published on remote repositories as ASCII-armored PGP files
    - Not all artifacts are published with signatures
    - A good signature doesn't mean that the signatory was legit
    
    As a consequence, signature verification will often be used alongside checksum verification.
    
    .About expired keys
    --
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
Back to top