Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 141 for histograms (0.16 sec)

  1. releasenotes/notes/bootstrap-histogram-buckets.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue: []
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 13 21:29:54 UTC 2023
    - 221 bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.23.md

      - **apiserver_flowcontrol_priority_level_seat_count_samples**: histograms of seats occupied by executing requests (both regular and final-delay phases included), broken down by priority_level; the observations are taken once per millisecond.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  3. cmd/metrics-v3-types.go

    	// GaugeMT - represents a gauge metric.
    	GaugeMT
    	// HistogramMT - represents a histogram metric.
    	HistogramMT
    	// rangeL - represents a range label.
    	rangeL = "range"
    )
    
    func (mt MetricType) String() string {
    	switch mt {
    	case CounterMT:
    		return "counter"
    	case GaugeMT:
    		return "gauge"
    	case HistogramMT:
    		return "histogram"
    	default:
    		return "*unknown*"
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. tensorflow/c/eager/c_api_experimental_test.cc

      TF_Buffer* result1 = TF_NewBuffer();
      TFE_MonitoringSamplerCellValue(cell1, result1);
      tensorflow::HistogramProto histogram1;
      EXPECT_TRUE(histogram1.ParseFromString(
          {reinterpret_cast<const char*>(result1->data), result1->length}));
      EXPECT_EQ(histogram1.sum(), 3.0);
      TF_DeleteBuffer(result1);
      TFE_MonitoringDeleteSampler1(sampler1);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 03:14:26 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/tests/insert_custom_aggregation_ops.mlir

    // HISTOGRAM-MSE-BRUTEFORCE-CHECK-NEXT:  return [[res]] : tensor<*xf32>
    
    // HISTOGRAM-MSE-BRUTEFORCE-CHECK: func @no_composite_func
    // HISTOGRAM-MSE-BRUTEFORCE-CHECK-NEXT:  "tf.AddV2"
    // HISTOGRAM-MSE-BRUTEFORCE-CHECK-NEXT:  return
    
    // HISTOGRAM-MSE-BRUTEFORCE-CHECK: func @composite_conv2d_with_relu6_fn
    // HISTOGRAM-MSE-BRUTEFORCE-CHECK-NEXT:  "tf.Conv2D"
    // HISTOGRAM-MSE-BRUTEFORCE-CHECK-NEXT:  "tf.Relu6"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_histogram.cc

    }
    
    void CalibrationStatisticsCollectorHistogram::Collect(
        const float min, const float max, absl::Span<const int64_t> histogram) {
      if (histogram.empty()) return;
    
      // Reconstruct the bin width, lower and upper bound from the collected data.
      const float collected_bin_width =
          CalculateBinWidth(min, max, histogram.size());
      const float collected_lower_bound =
          CalculateLowerBound(min, collected_bin_width);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 09:09:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_test.cc

    TEST(CalibrationStatisticsCollectorTest, SimpleMinMax) {
      auto collector = CalibrationStatisticsCollectorMinMax();
    
      collector.Collect(
          /*min=*/1.0f, /*max=*/10.f, /*histogram=*/{});
      collector.Collect(
          /*min=*/-5.0f, /*max=*/5.f, /*histogram=*/{});
    
      std::optional<CalibrationStatistics> statistics = collector.GetStatistics();
    
      EXPECT_TRUE(statistics.has_value());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 16 04:33:52 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/integration_test/custom_aggregator_op_test.py

          self.assertLen(aggregator_output.histogram, 512)
          self.assertEqual(sum(aggregator_output.histogram), 5)
          self.assertEqual(aggregator_output.histogram[0], 2)
          self.assertEqual(aggregator_output.histogram[128], 1)
          self.assertEqual(aggregator_output.histogram[192], 1)
          self.assertEqual(aggregator_output.histogram[320], 1)
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. tensorflow/c/kernels/histogram_summary_op.cc

      auto values_array = static_cast<T*>(TF_TensorData(safe_values_ptr.get()));
      tensorflow::histogram::Histogram histo;
      for (int64_t i = 0; i < TF_TensorElementCount(safe_values_ptr.get()); ++i) {
        const double double_val = static_cast<double>(values_array[i]);
        if (Eigen::numext::isnan(double_val)) {
          std::ostringstream err;
          err << "Nan in summary histogram for: " << k->op_node_name;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

    import org.opensearch.search.aggregations.AggregationBuilders;
    import org.opensearch.search.aggregations.BucketOrder;
    import org.opensearch.search.aggregations.bucket.histogram.DateHistogramInterval;
    import org.opensearch.search.aggregations.bucket.histogram.Histogram;
    import org.opensearch.search.aggregations.bucket.terms.Terms;
    import org.opensearch.search.aggregations.metrics.Avg;
    import org.opensearch.search.aggregations.metrics.Cardinality;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 28.4K bytes
    - Viewed (0)
Back to top