Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 855 for SELF (0.04 sec)

  1. manifests/addons/dashboards/lib/panels.libsonnet

        simple(title, targets, desc=''):
          self.base(title, targets, desc)
          + options.legend.withCalcs([])
          + options.legend.withDisplayMode('list'),
    
        short(title, targets, desc=''):
          self.base(title, targets, desc)
          + timeSeries.standardOptions.withUnit('short')
          + timeSeries.standardOptions.withDecimals(0),
    
        seconds(title, targets, desc=''):
          self.base(title, targets, desc)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/representative_dataset_test.py

        """
        for sample_1, sample_2 in zip(repr_ds_1, repr_ds_2):
          self.assertCountEqual(sample_1.keys(), sample_2.keys())
    
          for input_key in sample_1:
            self._assert_tensorlike_all_close(
                sess, sample_1[input_key], sample_2[input_key]
            )
    
      def test_not_implemented_saver(self):
        with self.assertRaisesRegex(
            NotImplementedError, '"save" is not implemented.'
        ):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 04 07:35:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. subprojects/core/src/testInterceptors/java/org/gradle/internal/classpath/BasicCallInterceptionTestInterceptorsDeclaration.java

        ) {
            self.intercepted = "setTestString(String)";
            self.setTestString(newValue);
        }
    
        @InterceptGroovyCalls
        @CallableKind.GroovyPropertyGetter
        public static boolean intercept_testFlag(
            @ParameterKind.Receiver InterceptorTestReceiver self,
            @ParameterKind.CallerClassName String consumer
        ) {
            self.intercepted = "isTestFlag()";
            return self.isTestFlag();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 08:15:56 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/declarations/GroovyFileInterceptors.java

        }
    
        @InterceptGroovyCalls
        @InstanceMethod
        @WithExtensionReferences(toClass = ResourceGroovyMethods.class)
        public static void intercept_eachByte(
            @Receiver File self,
            int bufferLen,
            Closure<?> closure,
            @CallerClassName String consumer
        ) throws IOException {
            Instrumented.fileOpened(self, consumer);
            ResourceGroovyMethods.eachByte(self, bufferLen, closure);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:56 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

          }
    
      def test_static_range_quantization_by_default(self):
        model = self.SimpleModel()
    
        saved_model_save.save(model, self._input_saved_model_path)
    
        # Use default QuantizationOptions.
        converted_model = quantize_model.quantize(
            self._input_saved_model_path,
            representative_dataset=self._simple_model_data_gen(),
        )
    
        self.assertIsNotNone(converted_model)
        self.assertCountEqual(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/testdata/generate_saved_models.py

          tensor_spec.TensorSpec((), dtypes.float32)
      ])
      def compute(self, a, b):
        return (a + self.x) * (b + self.y) / (self.child.z) + self.child.c
    
    
    class ReferencesParent(module.Module):
    
      def __init__(self, parent):
        super(ReferencesParent, self).__init__()
        self.parent = parent
        self.my_variable = variables.Variable(3., name="MyVariable")
    
    
    # Creates a cyclic object graph.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 18:06:18 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/integration/graph_decompose_test.py

        self.assertAllEqual(sq3.numpy().reshape(-1), [3, 6, 9, 12])
    
      def testBiasedDense(self):
        biased_dense = def_function.function(gen_composite_ops.my_biased_dense)
        t1 = constant_op.constant([[1.0, 2.0], [3.0, 4.0]])
        t2 = constant_op.constant([[1.0, 2.0], [3.0, 4.0]])
        t3 = constant_op.constant([[-10.0, -10.0], [-10.0, -10.0]])
        sq = biased_dense(t1, t2, t3)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_retract.txt

    go mod edit -require example.com/retract/self/prev@v1.1.0
    go get example.com/retract/self/prev
    go list -m example.com/retract/self/prev
    stdout '^example.com/retract/self/prev v1.1.0$'
    
    # 'go get pkg' should not downgrade from a retracted version when no higher
    # version is available.
    cp go.mod.orig go.mod
    go mod edit -require example.com/retract/self/prev@v1.9.0
    go get example.com/retract/self/prev
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  9. src/runtime/runtime-gdb.py

    	def __init__(self, val):
    		self.val = val
    
    	def display_hint(self):
    		return 'map'
    
    	def to_string(self):
    		return str(self.val.type)
    
    	def children(self):
    		MapBucketCount = 8 # see internal/abi.go:MapBucketCount
    		B = self.val['B']
    		buckets = self.val['buckets']
    		oldbuckets = self.val['oldbuckets']
    		flags = self.val['flags']
    		inttype = self.val['hash0'].type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm.py

        # So hist_mids[i] = (lower_bound + bin_width / 2) + bin_width * i
        first_mid = self._lower_bound + self._bin_width / 2
        last_mid = first_mid + (self._num_bins - 1) * self._bin_width
        self._hist_mids = np.linspace(first_mid, last_mid, self._num_bins)
    
      def _get_dequantized_hist_mids_after_quantize(
          self, quant_min: float, quant_max: float
      ) -> np.ndarray:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
Back to top