File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
baybe/recommenders/pure/bayesian Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -66,13 +66,13 @@ class BotorchRecommender(BayesianRecommender):
66
66
space optimization. Ignored when ``hybrid_sampler="None"``."""
67
67
68
68
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**.
71
71
"""
72
72
73
73
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**.
76
76
"""
77
77
78
78
@sampling_percentage .validator
You can’t perform that action at this time.
0 commit comments