Skip to content

Commit 65c6001

Browse files
committed
GRPC clients version 10.0.2
1 parent efa8a48 commit 65c6001

File tree

5 files changed

+252
-247
lines changed

5 files changed

+252
-247
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
10.0.1
1+
10.0.2

clarifai_grpc/channel/http_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
from clarifai_grpc.channel.errors import ApiError
1010

11-
CLIENT_VERSION = "10.0.1"
11+
CLIENT_VERSION = "10.0.2"
1212
OS_VER = os.sys.platform
1313
PYTHON_VERSION = ".".join(
1414
map(

clarifai_grpc/grpc/api/resources_pb2.py

Lines changed: 242 additions & 242 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clarifai_grpc/grpc/api/resources_pb2.pyi

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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

47014706
global___EvalMetrics = EvalMetrics
47024707

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setuptools.setup(
99
name="clarifai-grpc",
10-
version="10.0.1",
10+
version="10.0.2",
1111
author="Clarifai",
1212
author_email="support@clarifai.com",
1313
description="Clarifai gRPC API Client",

0 commit comments

Comments
 (0)