Skip to content

Commit

Permalink
modifed API doc for uncertainty parameters added, next try
Browse files Browse the repository at this point in the history
  • Loading branch information
spiralulam committed Nov 28, 2023
1 parent 47f35b9 commit cf043d7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions entmoot/models/model_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ class UncParams:
#: weight for penalty/exploration part in objective function
beta: float = 1.96
#: the predictions of the GBT model are cut off, if their absolute value exceeds
# bound_coeff * variance of the y-values.
#: bound_coeff * variance of the y-values.
bound_coeff: float = 0.5
#: "exploration": try to find good points far away from known training data,
# "exploitation": stay close to explored areas and try to find even better points there.
#: "exploitation": stay close to explored areas and try to find even better points there.
acq_sense: Literal["exploration", "penalty"] = "exploration"
#: controls two different types of transformations by scaling/shifting.
# "normal": shift by lower bound, scale by difference of smalles and largest value
# "standard": shift by mean, scale by standard deviation
#: "normal": shift by lower bound, scale by difference of smalles and largest value
#: "standard": shift by mean, scale by standard deviation
dist_trafo: Literal["normal", "standard"] = "normal"
#: compute distance measure using the l_1, the l_2 or the squared l_2 norm.
dist_metric: Literal["euclidean_squared", "l1", "l2"] = "euclidean_squared"
Expand Down

0 comments on commit cf043d7

Please sign in to comment.