Class: Google::Apis::BigqueryV2::BqmlTrainingRun::TrainingOptions

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

Overview

Deprecated.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TrainingOptions

Returns a new instance of TrainingOptions.



1328
1329
1330
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1328

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

Instance Attribute Details

#early_stopBoolean Also known as: early_stop?

Corresponds to the JSON property earlyStop

Returns:

  • (Boolean)


1284
1285
1286
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1284

def early_stop
  @early_stop
end

#l1_regFloat

Corresponds to the JSON property l1Reg

Returns:

  • (Float)


1290
1291
1292
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1290

def l1_reg
  @l1_reg
end

#l2_regFloat

Corresponds to the JSON property l2Reg

Returns:

  • (Float)


1295
1296
1297
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1295

def l2_reg
  @l2_reg
end

#learn_rateFloat

Corresponds to the JSON property learnRate

Returns:

  • (Float)


1300
1301
1302
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1300

def learn_rate
  @learn_rate
end

#learn_rate_strategyString

Corresponds to the JSON property learnRateStrategy

Returns:

  • (String)


1305
1306
1307
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1305

def learn_rate_strategy
  @learn_rate_strategy
end

#line_search_init_learn_rateFloat

Corresponds to the JSON property lineSearchInitLearnRate

Returns:

  • (Float)


1310
1311
1312
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1310

def line_search_init_learn_rate
  @line_search_init_learn_rate
end

#max_iterationFixnum

Corresponds to the JSON property maxIteration

Returns:

  • (Fixnum)


1315
1316
1317
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1315

def max_iteration
  @max_iteration
end

#min_rel_progressFloat

Corresponds to the JSON property minRelProgress

Returns:

  • (Float)


1320
1321
1322
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1320

def min_rel_progress
  @min_rel_progress
end

#warm_startBoolean Also known as: warm_start?

Corresponds to the JSON property warmStart

Returns:

  • (Boolean)


1325
1326
1327
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1325

def warm_start
  @warm_start
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1333

def update!(**args)
  @early_stop = args[:early_stop] if args.key?(:early_stop)
  @l1_reg = args[:l1_reg] if args.key?(:l1_reg)
  @l2_reg = args[:l2_reg] if args.key?(:l2_reg)
  @learn_rate = args[:learn_rate] if args.key?(:learn_rate)
  @learn_rate_strategy = args[:learn_rate_strategy] if args.key?(:learn_rate_strategy)
  @line_search_init_learn_rate = args[:line_search_init_learn_rate] if args.key?(:line_search_init_learn_rate)
  @max_iteration = args[:max_iteration] if args.key?(:max_iteration)
  @min_rel_progress = args[:min_rel_progress] if args.key?(:min_rel_progress)
  @warm_start = args[:warm_start] if args.key?(:warm_start)
end