tensorboard_experiment.proto 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. // Copyright 2022 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.cloud.aiplatform.v1;
  16. import "google/api/field_behavior.proto";
  17. import "google/api/resource.proto";
  18. import "google/protobuf/timestamp.proto";
  19. option csharp_namespace = "Google.Cloud.AIPlatform.V1";
  20. option go_package = "google.golang.org/genproto/googleapis/cloud/aiplatform/v1;aiplatform";
  21. option java_multiple_files = true;
  22. option java_outer_classname = "TensorboardExperimentProto";
  23. option java_package = "com.google.cloud.aiplatform.v1";
  24. option php_namespace = "Google\\Cloud\\AIPlatform\\V1";
  25. option ruby_package = "Google::Cloud::AIPlatform::V1";
  26. // A TensorboardExperiment is a group of TensorboardRuns, that are typically the
  27. // results of a training job run, in a Tensorboard.
  28. message TensorboardExperiment {
  29. option (google.api.resource) = {
  30. type: "aiplatform.googleapis.com/TensorboardExperiment"
  31. pattern: "projects/{project}/locations/{location}/tensorboards/{tensorboard}/experiments/{experiment}"
  32. };
  33. // Output only. Name of the TensorboardExperiment.
  34. // Format:
  35. // `projects/{project}/locations/{location}/tensorboards/{tensorboard}/experiments/{experiment}`
  36. string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
  37. // User provided name of this TensorboardExperiment.
  38. string display_name = 2;
  39. // Description of this TensorboardExperiment.
  40. string description = 3;
  41. // Output only. Timestamp when this TensorboardExperiment was created.
  42. google.protobuf.Timestamp create_time = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
  43. // Output only. Timestamp when this TensorboardExperiment was last updated.
  44. google.protobuf.Timestamp update_time = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
  45. // The labels with user-defined metadata to organize your Datasets.
  46. //
  47. // Label keys and values can be no longer than 64 characters
  48. // (Unicode codepoints), can only contain lowercase letters, numeric
  49. // characters, underscores and dashes. International characters are allowed.
  50. // No more than 64 user labels can be associated with one Dataset (System
  51. // labels are excluded).
  52. //
  53. // See https://goo.gl/xmQnxf for more information and examples of labels.
  54. // System reserved label keys are prefixed with "aiplatform.googleapis.com/"
  55. // and are immutable. Following system labels exist for each Dataset:
  56. // * "aiplatform.googleapis.com/dataset_metadata_schema":
  57. // - output only, its value is the
  58. // [metadata_schema's][metadata_schema_uri] title.
  59. map<string, string> labels = 6;
  60. // Used to perform consistent read-modify-write updates. If not set, a blind
  61. // "overwrite" update happens.
  62. string etag = 7;
  63. // Immutable. Source of the TensorboardExperiment. Example: a custom training job.
  64. string source = 8 [(google.api.field_behavior) = IMMUTABLE];
  65. }