Diff of /man/exp_decay.Rd [000000] .. [409433]

Switch to unified view

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