Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for medan (0.13 sec)

  1. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    }
    
    func.func @mean(%arg0: tensor<2x2xf32>, %arg1: tensor<1xi32>) -> tensor<1x2xf32> {
      %0 = "tf.Mean"(%arg0, %arg1) : (tensor<2x2xf32>, tensor<1xi32>) -> tensor<1x2xf32>
      func.return %0 : tensor<1x2xf32>
    
    // CHECK-LABEL: mean
    // CHECK:  "tfl.mean"(%arg0, %arg1) <{keep_dims = false}> : (tensor<2x2xf32>, tensor<1xi32>) -> tensor<1x2xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  2. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    perpendicular. And from these Measures I seem to gather this Rule: That the Thickness of the Air is proportional to the Secant of an Angle, whose Sine is a certain mean Proportional between the Sines of Incidence and Refraction. And that mean Proportional, so far as by these Measures I can determine it, is the first of an hundred and six arithmetical mean Proportionals between those Sines counted from the bigger Sine, that is, from the Sine of Refraction when the Refraction is made out of the Glass into the...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

          assertThat(cause)
              .hasMessageThat()
              .contains(
                  "AsyncFunction.apply returned null instead of a Future. "
                      + "Did you mean to return immediateFuture(null)?");
        }
      }
    
      @J2ktIncompatible
      @GwtIncompatible // threads
      public void testCatchingAsync_interruptPropagatesToTransformingThread() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

          assertThat(cause)
              .hasMessageThat()
              .contains(
                  "AsyncFunction.apply returned null instead of a Future. "
                      + "Did you mean to return immediateFuture(null)?");
        }
      }
    
      @J2ktIncompatible
      @GwtIncompatible // threads
      public void testCatchingAsync_interruptPropagatesToTransformingThread() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/ops.mlir

      // CHECK: "tfl.mean"(%arg0, %arg1) <{keep_dims = false}>
      %0 = "tfl.mean"(%arg0, %arg1) {keep_dims = false}: (tensor<2x2xf32>, tensor<1xi32>) -> tensor<1x2xf32>
      func.return %0 : tensor<1x2xf32>
    }
    
    // -----
    
    // CHECK-LABEL: testMean_true
    func.func @testMean_true(%arg0: tensor<2x2xf32>, %arg1 : tensor<1xi32>) -> tensor<1x2xf32> {
      // CHECK: "tfl.mean"(%arg0, %arg1) <{keep_dims = true}>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  6. manifests/addons/dashboards/istio-service-dashboard.json

          "options": {
            "colorMode": "none",
            "graphMode": "area",
            "justifyMode": "auto",
            "orientation": "horizontal",
            "reduceOptions": {
              "calcs": [
                "mean"
              ],
              "fields": "",
              "values": false
            },
            "textMode": "auto"
          },
          "pluginVersion": "10.1.5",
          "targets": [
            {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      if (offset && !IsOfRankedFloatTensorType(offset, 1))
        return op.emitOpError("requires offset to be a 1D float tensor");
    
      auto mean = GetRankedTensorTypeForOperand(op.getMean());
      if (mean && !IsOfRankedFloatTensorType(mean, 1))
        return op.emitOpError("requires mean to be a 1D float tensor");
    
      auto variance = GetRankedTensorTypeForOperand(op.getVariance());
      if (variance && !IsOfRankedFloatTensorType(variance, 1))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let hasOptions = 0;
    }
    
    def TFL_MeanOp : TFL_Op<"mean", [
        PredOpTrait<"input and output must have same element type",
          TFL_TCresVTEtIsSameAsOp<0, 0>>,
        QuantizableResult,
        Pure]> {
      let summary = "Mean operator";
    
      let description = [{
        Computes the mean of elements across dimensions of a tensor.
        Reduces input_tensor along the dimensions given in axis.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

                filter_tensor, filter_min, filter_max, num_bits=8, narrow_range=True
            )
            bias = array_ops.constant([0.1, 0.2], dtype=dtypes.float32)
            scale, offset = [1.0] * 2, [0.5] * 2
            mean, variance = scale, offset
            out = nn_ops.conv2d(
                q_input,
                q_filter,
                strides=[1, 1, 2, 1],
                dilations=[1, 1, 1, 1],
                padding='SAME',
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  10. cmd/admin-handlers.go

    	totalRx := int64(0)
    	connectTime := time.Now()
    	for {
    		n, err := io.CopyN(xioutil.Discard, r.Body, 128*humanize.KiByte)
    		if err != nil && err != io.EOF && err != io.ErrUnexpectedEOF {
    			// would mean the network is not stable. Logging here will help in debugging network issues.
    			if time.Since(connectTime) < (globalNetPerfMinDuration - time.Second) {
    				adminLogIf(ctx, err)
    			}
    		}
    		totalRx += n
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
Back to top