google-cloud-ai_platform-v1 0.6.0 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/google/cloud/ai_platform/v1/version.rb +1 -1
- data/lib/google/cloud/aiplatform/v1/model_monitoring_pb.rb +2 -0
- data/lib/google/cloud/aiplatform/v1/model_service_pb.rb +1 -0
- data/proto_docs/google/cloud/aiplatform/v1/model_monitoring.rb +10 -0
- data/proto_docs/google/cloud/aiplatform/v1/model_service.rb +3 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 994af4af80fb61c03bcf54b6a3ee61c8ad651d4bec8c586a7cb1d3bf8a7ac99a
|
4
|
+
data.tar.gz: 5f52efad863eff211772e60cfecf4d74c51a100239dd389abe2e5266bae998ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0fcb7d8af3b66b17d0ff366439b7c1920d038ac66d75592841925ca84cdebbf4711aec4997621cf64798a57316f63a4243e54fb4a09a21b25bc1e156d1460f65
|
7
|
+
data.tar.gz: d6440bd65e07dc7fb7402440e435f1b56acec44b81dd034d6f590865dfa5a7c924933158f3b3451d8e0fef3619911c0f539a43597c897b32608a52036e2fc920
|
@@ -27,10 +27,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
27
27
|
add_message "google.cloud.aiplatform.v1.ModelMonitoringObjectiveConfig.TrainingPredictionSkewDetectionConfig" do
|
28
28
|
map :skew_thresholds, :string, :message, 1, "google.cloud.aiplatform.v1.ThresholdConfig"
|
29
29
|
map :attribution_score_skew_thresholds, :string, :message, 2, "google.cloud.aiplatform.v1.ThresholdConfig"
|
30
|
+
optional :default_skew_threshold, :message, 6, "google.cloud.aiplatform.v1.ThresholdConfig"
|
30
31
|
end
|
31
32
|
add_message "google.cloud.aiplatform.v1.ModelMonitoringObjectiveConfig.PredictionDriftDetectionConfig" do
|
32
33
|
map :drift_thresholds, :string, :message, 1, "google.cloud.aiplatform.v1.ThresholdConfig"
|
33
34
|
map :attribution_score_drift_thresholds, :string, :message, 2, "google.cloud.aiplatform.v1.ThresholdConfig"
|
35
|
+
optional :default_drift_threshold, :message, 5, "google.cloud.aiplatform.v1.ThresholdConfig"
|
34
36
|
end
|
35
37
|
add_message "google.cloud.aiplatform.v1.ModelMonitoringObjectiveConfig.ExplanationConfig" do
|
36
38
|
optional :enable_feature_attributes, :bool, 1
|
@@ -28,6 +28,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
28
28
|
end
|
29
29
|
add_message "google.cloud.aiplatform.v1.UploadModelResponse" do
|
30
30
|
optional :model, :string, 1
|
31
|
+
optional :model_version_id, :string, 2
|
31
32
|
end
|
32
33
|
add_message "google.cloud.aiplatform.v1.GetModelRequest" do
|
33
34
|
optional :name, :string, 1
|
@@ -91,6 +91,11 @@ module Google
|
|
91
91
|
# Key is the feature name and value is the threshold. The threshold here is
|
92
92
|
# against attribution score distance between the training and prediction
|
93
93
|
# feature.
|
94
|
+
# @!attribute [rw] default_skew_threshold
|
95
|
+
# @return [::Google::Cloud::AIPlatform::V1::ThresholdConfig]
|
96
|
+
# Skew anomaly detection threshold used by all features.
|
97
|
+
# When the per-feature thresholds are not set, this field can be used to
|
98
|
+
# specify a threshold for all features.
|
94
99
|
class TrainingPredictionSkewDetectionConfig
|
95
100
|
include ::Google::Protobuf::MessageExts
|
96
101
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -125,6 +130,11 @@ module Google
|
|
125
130
|
# @return [::Google::Protobuf::Map{::String => ::Google::Cloud::AIPlatform::V1::ThresholdConfig}]
|
126
131
|
# Key is the feature name and value is the threshold. The threshold here is
|
127
132
|
# against attribution score distance between different time windows.
|
133
|
+
# @!attribute [rw] default_drift_threshold
|
134
|
+
# @return [::Google::Cloud::AIPlatform::V1::ThresholdConfig]
|
135
|
+
# Drift anomaly detection threshold used by all features.
|
136
|
+
# When the per-feature thresholds are not set, this field can be used to
|
137
|
+
# specify a threshold for all features.
|
128
138
|
class PredictionDriftDetectionConfig
|
129
139
|
include ::Google::Protobuf::MessageExts
|
130
140
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -59,6 +59,9 @@ module Google
|
|
59
59
|
# @return [::String]
|
60
60
|
# The name of the uploaded Model resource.
|
61
61
|
# Format: `projects/{project}/locations/{location}/models/{model}`
|
62
|
+
# @!attribute [r] model_version_id
|
63
|
+
# @return [::String]
|
64
|
+
# Output only. The version ID of the model that is uploaded.
|
62
65
|
class UploadModelResponse
|
63
66
|
include ::Google::Protobuf::MessageExts
|
64
67
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-ai_platform-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-06-
|
11
|
+
date: 2022-06-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|