123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- syntax = "proto3";
- package google.cloud.automl.v1beta1;
- option go_package = "google.golang.org/genproto/googleapis/cloud/automl/v1beta1;automl";
- option java_multiple_files = true;
- option java_package = "com.google.cloud.automl.v1beta1";
- option php_namespace = "Google\\Cloud\\AutoMl\\V1beta1";
- option ruby_package = "Google::Cloud::AutoML::V1beta1";
- message DataStats {
-
- oneof stats {
-
- Float64Stats float64_stats = 3;
-
- StringStats string_stats = 4;
-
- TimestampStats timestamp_stats = 5;
-
- ArrayStats array_stats = 6;
-
- StructStats struct_stats = 7;
-
- CategoryStats category_stats = 8;
- }
-
- int64 distinct_value_count = 1;
-
- int64 null_value_count = 2;
-
- int64 valid_value_count = 9;
- }
- message Float64Stats {
-
- message HistogramBucket {
-
- double min = 1;
-
-
- double max = 2;
-
-
- int64 count = 3;
- }
-
- double mean = 1;
-
- double standard_deviation = 2;
-
-
-
-
- repeated double quantiles = 3;
-
-
-
-
-
- repeated HistogramBucket histogram_buckets = 4;
- }
- message StringStats {
-
- message UnigramStats {
-
- string value = 1;
-
- int64 count = 2;
- }
-
-
- repeated UnigramStats top_unigram_stats = 1;
- }
- message TimestampStats {
-
- message GranularStats {
-
-
- map<int32, int64> buckets = 1;
- }
-
-
-
-
-
- map<string, GranularStats> granular_stats = 1;
- }
- message ArrayStats {
-
-
- DataStats member_stats = 2;
- }
- message StructStats {
-
-
- map<string, DataStats> field_stats = 1;
- }
- message CategoryStats {
-
- message SingleCategoryStats {
-
- string value = 1;
-
- int64 count = 2;
- }
-
-
-
- repeated SingleCategoryStats top_category_stats = 1;
- }
- message CorrelationStats {
-
- double cramers_v = 1;
- }
|