Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SchemaTrainingjobDefinitionSeq2SeqPlusForecastingInputsTransformationTimestampTransformation

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

Overview

Training pipeline will perform following transformation functions. * Apply the transformation functions for Numerical columns. * Determine the year, month, day,and weekday. Treat each value from the timestamp as a Categorical column. * Invalid numerical values (for example, values that fall outside of a typical timestamp range, or are extreme values) receive no special treatment and are not removed.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1SchemaTrainingjobDefinitionSeq2SeqPlusForecastingInputsTransformationTimestampTransformation

Returns a new instance of GoogleCloudAiplatformV1SchemaTrainingjobDefinitionSeq2SeqPlusForecastingInputsTransformationTimestampTransformation.



28627
28628
28629
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28627

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

Instance Attribute Details

#column_nameString

Corresponds to the JSON property columnName

Returns:

  • (String)


28614
28615
28616
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28614

def column_name
  @column_name
end

#time_formatString

The format in which that time field is expressed. The time_format must either be one of: * unix-seconds * unix-milliseconds * unix-microseconds * unix-nanoseconds (for respectively number of seconds, milliseconds, microseconds and nanoseconds since start of the Unix epoch); or be written in strftime syntax. If time_format is not set, then the default format is RFC 3339 date-time format, where time-offset = "Z" (e.g. 1985-04-12T23:20:50. 52Z) Corresponds to the JSON property timeFormat

Returns:

  • (String)


28625
28626
28627
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28625

def time_format
  @time_format
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



28632
28633
28634
28635
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28632

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