Update Retraining Scheduler
| lookoutequipment_update_retraining_scheduler | R Documentation |
Updates a retraining scheduler¶
Description¶
Updates a retraining scheduler.
Usage¶
lookoutequipment_update_retraining_scheduler(ModelName,
RetrainingStartDate, RetrainingFrequency, LookbackWindow, PromoteMode)
Arguments¶
ModelName[required] The name of the model whose retraining scheduler you want to update.
RetrainingStartDateThe start date for the retraining scheduler. Lookout for Equipment truncates the time you provide to the nearest UTC day.
RetrainingFrequencyThis parameter uses the ISO 8601 standard to set the frequency at which you want retraining to occur in terms of Years, Months, and/or Days (note: other parameters like Time are not currently supported). The minimum value is 30 days (P30D) and the maximum value is 1 year (P1Y). For example, the following values are valid:
P3M15D – Every 3 months and 15 days
P2M – Every 2 months
P150D – Every 150 days
LookbackWindowThe number of past days of data that will be used for retraining.
PromoteModeIndicates how the service will use new models. In
MANAGEDmode, new models will automatically be used for inference if they have better performance than the current model. InMANUALmode, the new models will not be used until they are manually activated.
Value¶
An empty list.
Request syntax¶
svc$update_retraining_scheduler(
ModelName = "string",
RetrainingStartDate = as.POSIXct(
"2015-01-01"
),
RetrainingFrequency = "string",
LookbackWindow = "string",
PromoteMode = "MANAGED"|"MANUAL"
)