Skip to content

Commit 51f11bb

Browse files
JohannesGaesslergraehl
authored andcommitted
try CI fix
1 parent bb6d2e7 commit 51f11bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/common.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1615,7 +1615,7 @@ void lr_opt::init() {
16151615
float lr_opt::get_lr(float epoch) const {
16161616
float r = lr_min <= 0 ? lr0 :
16171617
epoch >= decay_epochs ? lr_min :
1618-
lr0 * std::powf(0.5f, epoch * scale_epoch);
1618+
lr0 * std::pow(0.5f, epoch * scale_epoch);
16191619
LOG_INF("epoch %.2g lr=%.2g\n", epoch, r);
16201620
return r;
16211621
}

0 commit comments

Comments
 (0)