[02ea2d]: / man / exp_decay.Rd

Download this file

26 lines (22 with data), 631 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/metrics.R
\name{exp_decay}
\alias{exp_decay}
\title{Exponential Decay}
\usage{
exp_decay(lrmax = 0.005, mult = 0.1, epoch = NULL)
}
\arguments{
\item{lrmax}{Upper limit of the range for the learning rate.}
\item{mult}{Factor, by which the number of epochs until a restart is decreased after a new step.}
\item{epoch}{Epoch, for which the learning rate shall be calculated.}
}
\value{
A numeric value.
}
\description{
Compute the learning Rate for a given epoch using Exponential Decay.
}
\examples{
exp_decay(lrmax = 0.005, mult = 0.1, epoch = 8)
}