Provides the best point to use as a minimum, given the budget that was used Returns ------- p.Parameter The candidate with minimal value. p.Parameters have field :code:`args` and :code:`kwargs` which can be directly used on the function (:code:`object
(self)
| 540 | return candidate |
| 541 | |
| 542 | def provide_recommendation(self) -> p.Parameter: |
| 543 | """Provides the best point to use as a minimum, given the budget that was used |
| 544 | |
| 545 | Returns |
| 546 | ------- |
| 547 | p.Parameter |
| 548 | The candidate with minimal value. p.Parameters have field :code:`args` and :code:`kwargs` which can be directly used |
| 549 | on the function (:code:`objective_function(*candidate.args, **candidate.kwargs)`). |
| 550 | """ |
| 551 | return self.recommend() # duplicate method |
| 552 | |
| 553 | def recommend(self) -> p.Parameter: |
| 554 | """Provides the best candidate to use as a minimum, given the budget that was used. |