Class: Google::Apis::LanguageV1beta2::XpsTrainingObjectivePoint

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ XpsTrainingObjectivePoint

Returns a new instance of XpsTrainingObjectivePoint.



4862
4863
4864
# File 'lib/google/apis/language_v1beta2/classes.rb', line 4862

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

Instance Attribute Details

#create_timeString

The time at which this point was recorded. Corresponds to the JSON property createTime

Returns:

  • (String)


4855
4856
4857
# File 'lib/google/apis/language_v1beta2/classes.rb', line 4855

def create_time
  @create_time
end

#valueFloat

The objective value when this point was recorded. Corresponds to the JSON property value

Returns:

  • (Float)


4860
4861
4862
# File 'lib/google/apis/language_v1beta2/classes.rb', line 4860

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4867
4868
4869
4870
# File 'lib/google/apis/language_v1beta2/classes.rb', line 4867

def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @value = args[:value] if args.key?(:value)
end