Skip to content

Commit 3f5f48f

Browse files
committed
Update docstrings
1 parent 425cacd commit 3f5f48f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

baybe/recommenders/pure/bayesian/botorch.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,13 @@ class BotorchRecommender(BayesianRecommender):
6666
space optimization. Ignored when ``hybrid_sampler="None"``."""
6767

6868
n_restarts: int = field(validator=[instance_of(int), gt(0)], default=10)
69-
"""Controls how many times gradient-based optimization is restarted from different
70-
initial points. **Does not affect purely discrete optimization**.
69+
"""Number of times gradient-based optimization is restarted from different initial
70+
points. **Does not affect purely discrete optimization**.
7171
"""
7272

7373
n_raw_samples: int = field(validator=[instance_of(int), gt(0)], default=64)
74-
"""Controls the number of raw samples drawn for the initialization heuristic in
75-
gradient-based optimization. **Does not affect purely discrete optimization**.
74+
"""Number of raw samples drawn for the initialization heuristic in gradient-based
75+
optimization. **Does not affect purely discrete optimization**.
7676
"""
7777

7878
@sampling_percentage.validator

0 commit comments

Comments
 (0)