@@ -4624,6 +4624,7 @@ class EvalMetrics(google.protobuf.message.Message):
46244624 ID_FIELD_NUMBER : builtins .int
46254625 MODEL_FIELD_NUMBER : builtins .int
46264626 GROUND_TRUTH_DATASET_FIELD_NUMBER : builtins .int
4627+ PREDICTIONS_DATASET_FIELD_NUMBER : builtins .int
46274628 SUMMARY_FIELD_NUMBER : builtins .int
46284629 CONFUSION_MATRIX_FIELD_NUMBER : builtins .int
46294630 COOCCURRENCE_MATRIX_FIELD_NUMBER : builtins .int
@@ -4650,6 +4651,9 @@ class EvalMetrics(google.protobuf.message.Message):
46504651 def ground_truth_dataset (self ) -> global___Dataset :
46514652 """The ground truth dataset"""
46524653 @property
4654+ def predictions_dataset (self ) -> global___Dataset :
4655+ """The dataset with predictions"""
4656+ @property
46534657 def summary (self ) -> global___MetricsSummary : ...
46544658 @property
46554659 def confusion_matrix (self ) -> global___ConfusionMatrix : ...
@@ -4683,6 +4687,7 @@ class EvalMetrics(google.protobuf.message.Message):
46834687 id : builtins .str = ...,
46844688 model : global___Model | None = ...,
46854689 ground_truth_dataset : global___Dataset | None = ...,
4690+ predictions_dataset : global___Dataset | None = ...,
46864691 summary : global___MetricsSummary | None = ...,
46874692 confusion_matrix : global___ConfusionMatrix | None = ...,
46884693 cooccurrence_matrix : global___CooccurrenceMatrix | None = ...,
@@ -4695,8 +4700,8 @@ class EvalMetrics(google.protobuf.message.Message):
46954700 eval_info : global___EvalInfo | None = ...,
46964701 extended_metrics : global___ExtendedMetrics | None = ...,
46974702 ) -> None : ...
4698- def HasField (self , field_name : typing_extensions .Literal ["confusion_matrix" , b"confusion_matrix" , "cooccurrence_matrix" , b"cooccurrence_matrix" , "eval_info" , b"eval_info" , "extended_metrics" , b"extended_metrics" , "ground_truth_dataset" , b"ground_truth_dataset" , "label_counts" , b"label_counts" , "model" , b"model" , "status" , b"status" , "summary" , b"summary" ]) -> builtins .bool : ...
4699- def ClearField (self , field_name : typing_extensions .Literal ["app_id" , b"app_id" , "binary_metrics" , b"binary_metrics" , "confusion_matrix" , b"confusion_matrix" , "cooccurrence_matrix" , b"cooccurrence_matrix" , "eval_info" , b"eval_info" , "extended_metrics" , b"extended_metrics" , "ground_truth_dataset" , b"ground_truth_dataset" , "id" , b"id" , "label_counts" , b"label_counts" , "metrics_by_area" , b"metrics_by_area" , "metrics_by_class" , b"metrics_by_class" , "model" , b"model" , "status" , b"status" , "summary" , b"summary" , "test_set" , b"test_set" , "tracker_metrics" , b"tracker_metrics" , "user_id" , b"user_id" ]) -> None : ...
4703+ def HasField (self , field_name : typing_extensions .Literal ["confusion_matrix" , b"confusion_matrix" , "cooccurrence_matrix" , b"cooccurrence_matrix" , "eval_info" , b"eval_info" , "extended_metrics" , b"extended_metrics" , "ground_truth_dataset" , b"ground_truth_dataset" , "label_counts" , b"label_counts" , "model" , b"model" , "predictions_dataset" , b"predictions_dataset" , " status" , b"status" , "summary" , b"summary" ]) -> builtins .bool : ...
4704+ def ClearField (self , field_name : typing_extensions .Literal ["app_id" , b"app_id" , "binary_metrics" , b"binary_metrics" , "confusion_matrix" , b"confusion_matrix" , "cooccurrence_matrix" , b"cooccurrence_matrix" , "eval_info" , b"eval_info" , "extended_metrics" , b"extended_metrics" , "ground_truth_dataset" , b"ground_truth_dataset" , "id" , b"id" , "label_counts" , b"label_counts" , "metrics_by_area" , b"metrics_by_area" , "metrics_by_class" , b"metrics_by_class" , "model" , b"model" , "predictions_dataset" , b"predictions_dataset" , " status" , b"status" , "summary" , b"summary" , "test_set" , b"test_set" , "tracker_metrics" , b"tracker_metrics" , "user_id" , b"user_id" ]) -> None : ...
47004705
47014706global___EvalMetrics = EvalMetrics
47024707
0 commit comments