MCPcopy Create free account
hub / github.com/GanjinZero/BioBART / warmup_constant

Function warmup_constant

pretrain_src/optimization_utils.py:14–17  ·  view source on GitHub ↗
(x, warmup=0.002)

Source from the content-addressed store, hash-verified

12
13
14def warmup_constant(x, warmup=0.002):
15 if x < warmup:
16 return x / warmup
17 return 1.0
18
19
20def warmup_linear(x, warmup=0.002):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected