123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- syntax = "proto3";
- package google.cloud.aiplatform.v1;
- import "google/api/field_behavior.proto";
- import "google/cloud/aiplatform/v1/tensorboard_time_series.proto";
- import "google/protobuf/timestamp.proto";
- option csharp_namespace = "Google.Cloud.AIPlatform.V1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/aiplatform/v1;aiplatform";
- option java_multiple_files = true;
- option java_outer_classname = "TensorboardDataProto";
- option java_package = "com.google.cloud.aiplatform.v1";
- option php_namespace = "Google\\Cloud\\AIPlatform\\V1";
- option ruby_package = "Google::Cloud::AIPlatform::V1";
- message TimeSeriesData {
-
-
- string tensorboard_time_series_id = 1 [(google.api.field_behavior) = REQUIRED];
-
-
- TensorboardTimeSeries.ValueType value_type = 2 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.field_behavior) = IMMUTABLE
- ];
-
- repeated TimeSeriesDataPoint values = 3 [(google.api.field_behavior) = REQUIRED];
- }
- message TimeSeriesDataPoint {
-
- oneof value {
-
- Scalar scalar = 3;
-
- TensorboardTensor tensor = 4;
-
- TensorboardBlobSequence blobs = 5;
- }
-
- google.protobuf.Timestamp wall_time = 1;
-
- int64 step = 2;
- }
- message Scalar {
-
- double value = 1;
- }
- message TensorboardTensor {
-
-
- bytes value = 1 [(google.api.field_behavior) = REQUIRED];
-
- int32 version_number = 2 [(google.api.field_behavior) = OPTIONAL];
- }
- message TensorboardBlobSequence {
-
- repeated TensorboardBlob values = 1;
- }
- message TensorboardBlob {
-
-
- string id = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- bytes data = 2 [(google.api.field_behavior) = OPTIONAL];
- }
|