AdaBelief: use smaller value for the epsilon

Signed-off-by: AbdelRauf <rauf@konduit.ai>
master
AbdelRauf 2021-02-22 04:59:07 +01:00
parent a4efb4d4e9
commit a94f29f6cc
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ import java.util.Map;
public class AdaBelief implements IUpdater {
public static final double DEFAULT_LEARNING_RATE = 1e-3;
public static final double DEFAULT_EPSILON = 1e-8;
public static final double DEFAULT_EPSILON = 1e-14;
public static final double DEFAULT_BETA1_MEAN_DECAY = 0.9;
public static final double DEFAULT_BETA2_VAR_DECAY = 0.999;