Skip to content

Commit

Permalink
GH-15809: fix comments
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 76e62f6 commit b2318c8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class ModelMetricsBinomialV3<I extends ModelMetricsBinomial, S extends Mo
@API(help="The logarithmic loss for this scoring run.", direction=API.Direction.OUTPUT)
public double logloss;

@API(help="The negative logarithmic likelihood for this scoring run.", direction=API.Direction.OUTPUT)
@API(help="The logarithmic likelihood for this scoring run.", direction=API.Direction.OUTPUT)
public double loglikelihood;

@API(help="The AIC for this scoring run.", direction=API.Direction.OUTPUT)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class ModelMetricsMultinomialV3<I extends ModelMetricsMultinomial, S exte
@API(help="The logarithmic loss for this scoring run.", direction=API.Direction.OUTPUT)
public double logloss;

@API(help="The negative logarithmic likelihood for this scoring run.", direction=API.Direction.OUTPUT)
@API(help="The logarithmic likelihood for this scoring run.", direction=API.Direction.OUTPUT)
public double loglikelihood;

@API(help="The AIC for this scoring run.", direction=API.Direction.OUTPUT)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class ModelMetricsRegressionGenericV3<I extends ModelMetricsRegressionGen
@API(help="The root mean squared log error for this scoring run.", direction=API.Direction.OUTPUT)
public double rmsle;

@API(help="The negative logarithmic likelihood for this scoring run.", direction=API.Direction.OUTPUT)
@API(help="The logarithmic likelihood for this scoring run.", direction=API.Direction.OUTPUT)
public double loglikelihood;

@API(help="The AIC for this scoring run.", direction=API.Direction.OUTPUT)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class ModelMetricsRegressionV3<I extends ModelMetricsRegression, S extend
@API(help="The root mean squared log error for this scoring run.", direction=API.Direction.OUTPUT)
public double rmsle;

@API(help="The negative logarithmic likelihood for this scoring run.", direction=API.Direction.OUTPUT)
@API(help="The logarithmic likelihood for this scoring run.", direction=API.Direction.OUTPUT)
public double loglikelihood;

@API(help="The AIC for this scoring run.", direction=API.Direction.OUTPUT)
Expand Down

0 comments on commit b2318c8

Please sign in to comment.