Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for Mean (0.13 sec)

  1. CREDITS

       1. Definitions.
    
          "License" shall mean the terms and conditions for use, reproduction,
          and distribution as defined by Sections 1 through 9 of this document.
    
          "Licensor" shall mean the copyright owner or entity authorized by
          the copyright owner that is granting the License.
    
          "Legal Entity" shall mean the union of the acting entity and all
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  2. manifests/addons/dashboards/lib/panels.libsonnet

          self.base(title, targets, desc)
          + timeSeries.standardOptions.withUnit('s')
          + custom.withDrawStyle('bars')
          + timeSeries.standardOptions.withOverrides([
            fieldOverride.byRegexp.new('/mean/i')
            + fieldOverride.byRegexp.withProperty(
              'custom.fillOpacity',
              0
            )
            + fieldOverride.byRegexp.withProperty(
              'custom.lineStyle',
              {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/fuzzer/fuzzer.go

    	obj.Disabled = false
    }
    
    func fuzzComponentConfigMap(obj *kubeadm.ComponentConfigMap, c fuzz.Continue) {
    	// This is intentionally empty because component config does not exists in the public api
    	// (empty mean all ComponentConfigs fields nil, and this is necessary for getting roundtrip passing)
    }
    
    func fuzzLocalEtcd(obj *kubeadm.LocalEtcd, c fuzz.Continue) {
    	c.FuzzNoCustom(obj)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

                                                        input_element_type);
    
          // The mean, variance, and reserved space outputs of the batch norm op are
          // not used for inference. It doesn't matter what values we provide for
          // the last 5 results as long as they are of the same type. Forward
          // input mean and variance to output mean, variance, reserved_space_1 and
          // reserved_space_2.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    Contrast is adjusted independently for each channel of each image.
    
    For each channel, the Op first computes the mean of the image pixels in the
    channel and then adjusts each component of each pixel to
    `(x - mean) * contrast_factor + mean`.
      }];
    
      let arguments = (ins
        Arg<TensorOf<[TF_Float16, TF_Float32]>, [{Images to adjust.  At least 3-D.}]>:$images,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  6. samples/addons/grafana.yaml

    red","value":80}]},"unit":"ops"},"overrides":[]},"gridPos":{"h":3,"w":6,"x":0,"y":3},"id":20,"links":[],"maxDataPoints":100,"options":{"colorMode":"none","graphMode":"area","justifyMode":"auto","orientation":"horizontal","reduceOptions":{"calcs":["mean"],"fields":"","values":false},"textMode":"auto"},"pluginVersion":"10.1.5","targets":[{"datasource":{"type":"prometheus","uid":"${datasource}"},"expr":"round(sum(irate(istio_requests_total{reporter=\"source\"}[1m])), 0.001)","intervalFactor":1,"ref...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/help/helpdoc.go

    line comment that begins
    
    	//go:build
    
    Constraints may appear in any kind of source file (not just Go), but
    they must appear near the top of the file, preceded
    only by blank lines and other comments. These rules mean that in Go
    files a build constraint must appear before the package clause.
    
    To distinguish build constraints from package documentation,
    a build constraint should be followed by a blank line.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. RELEASE.md

            mean, var = tf.nn.moments(self.kernel, axes=[0, 1, 2], keepdims=True)
            return self.convolution_op(inputs, (self.kernel - mean) / tf.sqrt(var +
            1e-10))` Alternatively, you can override `convolution_op`: `python class
            StandardizedConv2D(tf.keras.Layer): def convolution_op(self, inputs,
            kernel): mean, var = tf.nn.moments(kernel, axes=[0, 1, 2],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  9. src/time/format.go

    			// Ugly special case. We cheat and take the "Z" variants
    			// to mean "the time zone as formatted for ISO 8601".
    			if offset == 0 && (std == stdISO8601TZ || std == stdISO8601ColonTZ || std == stdISO8601SecondsTZ || std == stdISO8601ShortTZ || std == stdISO8601ColonSecondsTZ) {
    				b = append(b, 'Z')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      if (!variant_ty) {
        return false;
      }
      // Check there is only one subtype contained in the variant type. Note that
      // when `subtypes.size() == 1` does not always mean the type is actually
      // a tensorlist. We probably need some form of data flow analysis.
      if (variant_ty.getSubtypes().size() == 1) {
        return true;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
Back to top