Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 109 for dataKey (0.49 sec)

  1. src/internal/zstd/window.go

    func (w *window) appendTo(buf []byte, from, to uint32) []byte {
    	dataLen := uint32(len(w.data))
    	from += uint32(w.off)
    	to += uint32(w.off)
    
    	wrap := false
    	if from > dataLen {
    		from -= dataLen
    		wrap = !wrap
    	}
    	if to > dataLen {
    		to -= dataLen
    		wrap = !wrap
    	}
    
    	if wrap {
    		buf = append(buf, w.data[from:]...)
    		return append(buf, w.data[:to]...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:49:23 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. android/guava-tests/benchmark/com/google/common/base/ToStringHelperBenchmark.java

                .add(SHORT_NAME, 13.0f)
                .add(LONG_NAME, 14.0f)
                .addValue(15.0f);
          }
        };
    
        void addEntries(MoreObjects.ToStringHelper helper) {}
      }
    
      @Param Dataset dataset;
    
      private static final String SHORT_NAME = "userId";
      private static final String LONG_NAME = "fluxCapacitorFailureRate95Percentile";
    
      private MoreObjects.ToStringHelper newHelper() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/representative_dataset_test.py

          )
    
          # The resulting dataset should not contain any tf.Tensors.
          self.assertFalse(any(map(_contains_tensor, new_repr_ds)))
          self._assert_sample_values_all_close(sess, data_gen(), new_repr_ds)
    
      @test_util.deprecated_graph_mode_only
      def test_replace_tensors_by_numpy_ndarrays_is_noop_when_no_tensor(self):
        # Fill the representative dataset with np.ndarrays only.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 04 07:35:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. guava-tests/benchmark/com/google/common/base/ToStringHelperBenchmark.java

                .add(SHORT_NAME, 13.0f)
                .add(LONG_NAME, 14.0f)
                .addValue(15.0f);
          }
        };
    
        void addEntries(MoreObjects.ToStringHelper helper) {}
      }
    
      @Param Dataset dataset;
    
      private static final String SHORT_NAME = "userId";
      private static final String LONG_NAME = "fluxCapacitorFailureRate95Percentile";
    
      private MoreObjects.ToStringHelper newHelper() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/decompose_reduce_dataset.cc

                reduce_dataset.getF());
    
        // The reduce function arguments consist of three part in this order:
        // 1. Reduction state inputs.
        // 2. Dataset inputs.
        // 3. Captures inputs.
        // The number of dataset inputs can be indirectly determined to be
        // total_number_of_inputs - state_inputs - captured_inputs.
        auto func_inputs = reduce_func.getFunctionType().getInputs();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics.proto

        // global maximum of all sample datasets.
        float global_max = 2;
      }
    
      message AverageMinMaxStatistics {
        // sum of batch's minimum in each sample dataset.
        float min_sum = 1;
    
        // sum of batch's maximum in each sample dataset.
        float max_sum = 2;
    
        // number of sample datasets
        int32 num_samples = 3;
      }
    
      message HistogramStatistics {
        // width of bin
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 16 04:33:52 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. tests/integration/pilot/validation_test.go

    )
    
    type testData string
    
    func (t testData) load() (string, error) {
    	by, err := validation.FS.ReadFile(path.Join("dataset", string(t)))
    	if err != nil {
    		return "", err
    	}
    
    	return string(by), nil
    }
    
    func loadTestData(t framework.TestContext) []testData {
    	entries, err := validation.FS.ReadDir("dataset")
    	if err != nil {
    		t.Fatalf("Error loading test data: %v", err)
    	}
    
    	var result []testData
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 13 15:19:36 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

    // TFRecord format.
    // Next ID: 2
    message TfRecordFile {
      string path = 1;
    }
    
    // Configures a single representative dataset used to calibrate a single
    // function.
    // Next ID: 3
    message RepresentativeDatasetConfig {
      oneof file {
        // Represents representative dataset saved as a .tfrecord file format.
        TfRecordFile tf_record = 1;
      }
    
      // [TF SavedModel] Identifies a SignatureDef which represents a single
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.py

      """
      if isinstance(representative_dataset, Mapping):
        if set(signature_def_map.keys()) != set(representative_dataset.keys()):
          raise ValueError(
              'The signature keys and the keys of representative dataset map '
              f'do not match. Signature keys: {set(signature_def_map.keys())}, '
              f'representative dataset map: {set(representative_dataset.keys())}.'
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/telemetrycmd/telemetry.go

    and periodically sent to https://telemetry.go.dev/. Uploaded data is used to
    help improve the Go toolchain and related tools, and it will be published as
    part of a public dataset.
    
    For more details, see https://telemetry.go.dev/privacy.
    This data is collected in accordance with the Google Privacy Policy
    (https://policies.google.com/privacy).
    
    To view the current telemetry mode, run "go telemetry".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 20:16:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top