View source: R/aided_chatgpt.R
learn_rate_scheduler | R Documentation |
This function adjusts the learning rate at each epoch according to a custom schedule.
learn_rate_scheduler(initial_lr, schedule, epochs)
initial_lr |
A numeric value representing the initial learning rate. |
schedule |
A function that takes the epoch number as input and returns the adjusted learning rate. |
epochs |
An integer specifying the total number of epochs. |
A numeric vector representing the learning rate for each epoch.
schedule <- function(epoch) { 0.01 * (0.9 ^ epoch) }
learn_rate_scheduler(0.01, schedule, epochs = 10)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.