Class: Google::Apis::LanguageV2::XpsTextComponentModel

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/language_v2/classes.rb,
lib/google/apis/language_v2/representations.rb,
lib/google/apis/language_v2/representations.rb

Overview

Component model. Next ID: 10

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ XpsTextComponentModel

Returns a new instance of XpsTextComponentModel.



4076
4077
4078
# File 'lib/google/apis/language_v2/classes.rb', line 4076

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#batch_prediction_model_gcs_uriString

The Cloud Storage resource path to hold batch prediction model. Corresponds to the JSON property batchPredictionModelGcsUri

Returns:

  • (String)


4030
4031
4032
# File 'lib/google/apis/language_v2/classes.rb', line 4030

def batch_prediction_model_gcs_uri
  @batch_prediction_model_gcs_uri
end

#online_prediction_model_gcs_uriString

The Cloud Storage resource path to hold online prediction model. Corresponds to the JSON property onlinePredictionModelGcsUri

Returns:

  • (String)


4035
4036
4037
# File 'lib/google/apis/language_v2/classes.rb', line 4035

def online_prediction_model_gcs_uri
  @online_prediction_model_gcs_uri
end

#partitionString

The partition where the model is deployed. Populated by uCAIP BE as part of online PredictRequest. Corresponds to the JSON property partition

Returns:

  • (String)


4041
4042
4043
# File 'lib/google/apis/language_v2/classes.rb', line 4041

def partition
  @partition
end

#serving_artifactGoogle::Apis::LanguageV2::XpsModelArtifactItem

A single model artifact item. Corresponds to the JSON property servingArtifact



4046
4047
4048
# File 'lib/google/apis/language_v2/classes.rb', line 4046

def serving_artifact
  @serving_artifact
end

#servo_model_nameString

The name of servo model. Populated by uCAIP BE as part of online PredictRequest. Corresponds to the JSON property servoModelName

Returns:

  • (String)


4052
4053
4054
# File 'lib/google/apis/language_v2/classes.rb', line 4052

def servo_model_name
  @servo_model_name
end

#submodel_nameString

The name of the trained NL submodel. Corresponds to the JSON property submodelName

Returns:

  • (String)


4057
4058
4059
# File 'lib/google/apis/language_v2/classes.rb', line 4057

def submodel_name
  @submodel_name
end

#submodel_typeString

The type of trained NL submodel Corresponds to the JSON property submodelType

Returns:

  • (String)


4062
4063
4064
# File 'lib/google/apis/language_v2/classes.rb', line 4062

def submodel_type
  @submodel_type
end

#tf_runtime_versionString

The fields below are only populated under uCAIP request scope. https://

cloud.google.com/ml-engine/docs/runtime-version-list Corresponds to the JSON property tfRuntimeVersion

Returns:

  • (String)


4068
4069
4070
# File 'lib/google/apis/language_v2/classes.rb', line 4068

def tf_runtime_version
  @tf_runtime_version
end

#version_numberFixnum

The servomatic model version number. Populated by uCAIP BE as part of online PredictRequest. Corresponds to the JSON property versionNumber

Returns:

  • (Fixnum)


4074
4075
4076
# File 'lib/google/apis/language_v2/classes.rb', line 4074

def version_number
  @version_number
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
# File 'lib/google/apis/language_v2/classes.rb', line 4081

def update!(**args)
  @batch_prediction_model_gcs_uri = args[:batch_prediction_model_gcs_uri] if args.key?(:batch_prediction_model_gcs_uri)
  @online_prediction_model_gcs_uri = args[:online_prediction_model_gcs_uri] if args.key?(:online_prediction_model_gcs_uri)
  @partition = args[:partition] if args.key?(:partition)
  @serving_artifact = args[:serving_artifact] if args.key?(:serving_artifact)
  @servo_model_name = args[:servo_model_name] if args.key?(:servo_model_name)
  @submodel_name = args[:submodel_name] if args.key?(:submodel_name)
  @submodel_type = args[:submodel_type] if args.key?(:submodel_type)
  @tf_runtime_version = args[:tf_runtime_version] if args.key?(:tf_runtime_version)
  @version_number = args[:version_number] if args.key?(:version_number)
end