123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- syntax = "proto3";
- package google.cloud.automl.v1;
- import "google/api/field_behavior.proto";
- import "google/cloud/automl/v1/classification.proto";
- option csharp_namespace = "Google.Cloud.AutoML.V1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/automl/v1;automl";
- option java_multiple_files = true;
- option java_outer_classname = "ImageProto";
- option java_package = "com.google.cloud.automl.v1";
- option php_namespace = "Google\\Cloud\\AutoMl\\V1";
- option ruby_package = "Google::Cloud::AutoML::V1";
- message ImageClassificationDatasetMetadata {
-
- ClassificationType classification_type = 1 [(google.api.field_behavior) = REQUIRED];
- }
- message ImageObjectDetectionDatasetMetadata {
- }
- message ImageClassificationModelMetadata {
-
-
-
-
-
- string base_model_id = 1 [(google.api.field_behavior) = OPTIONAL];
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- int64 train_budget_milli_node_hours = 16 [(google.api.field_behavior) = OPTIONAL];
-
-
-
- int64 train_cost_milli_node_hours = 17 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- string stop_reason = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- string model_type = 7 [(google.api.field_behavior) = OPTIONAL];
-
-
- double node_qps = 13 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
- int64 node_count = 14 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message ImageObjectDetectionModelMetadata {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- string model_type = 1 [(google.api.field_behavior) = OPTIONAL];
-
-
-
- int64 node_count = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- double node_qps = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- string stop_reason = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- int64 train_budget_milli_node_hours = 6 [(google.api.field_behavior) = OPTIONAL];
-
-
-
- int64 train_cost_milli_node_hours = 7 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message ImageClassificationModelDeploymentMetadata {
-
-
-
-
-
- int64 node_count = 1 [(google.api.field_behavior) = INPUT_ONLY];
- }
- message ImageObjectDetectionModelDeploymentMetadata {
-
-
-
-
-
- int64 node_count = 1 [(google.api.field_behavior) = INPUT_ONLY];
- }
|