Skip to content

Commit

Permalink
GH-15809: default dispersion estimation set to 1
Browse files Browse the repository at this point in the history
  • Loading branch information
syzonyuliia-h2o authored and wendycwong committed Feb 5, 2024
1 parent c08e2f5 commit efbbd6a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ protected void readModelData() throws IOException {

_model._beta = readkv("beta");
_model._family = readkv("family");
_model._dispersion_estimated = readkv("dispersion_estimated", 0.0);
_model._dispersion_estimated = readkv("dispersion_estimated", 1.0);

if (_model instanceof GlmMojoModel) {
GlmMojoModel m = (GlmMojoModel) _model;
Expand Down

0 comments on commit efbbd6a

Please sign in to comment.