Continuous Sampling Module¶
compute_lon ¶
compute_lon(
func: Callable[[ndarray], float],
dim: int,
lower_bound: float | Sequence[float],
upper_bound: float | Sequence[float],
initial_points: ndarray | None = None,
config: BasinHoppingSamplerConfig | None = None,
lon_config: LONConfig | None = None,
verbose: bool = False,
) -> LON
Compute a LON from an objective function.
This is the simplest way to construct a Local Optima Network. For more control, use BasinHoppingSampler directly.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
func
|
Callable[[ndarray], float]
|
Objective function f(x) -> float to minimize, where x is in R^n_var. |
required |
dim
|
int
|
Number of dimensions (n_var). |
required |
lower_bound
|
float | Sequence[float]
|
Lower bound (scalar or per-dimension list/array). |
required |
upper_bound
|
float | Sequence[float]
|
Upper bound (scalar or per-dimension list/array). |
required |
initial_points
|
ndarray | None
|
Optional array of shape ( |
None
|
config
|
BasinHoppingSamplerConfig | None
|
Basin-Hopping sampler configuration. Uses default BasinHoppingSamplerConfig if not provided. |
None
|
lon_config
|
LONConfig | None
|
LON construction configuration. Uses default LONConfig if not provided. |
None
|
verbose
|
bool
|
If True, show a progress bar during sampling. Default: |
False
|
Returns:
| Type | Description |
|---|---|
LON
|
LON instance. |
Example
import numpy as np def sphere(x): ... return np.sum(x**2) lon = compute_lon(sphere, dim=5, lower_bound=-5.0, upper_bound=5.0) print(f"Found {lon.n_vertices} local optima")
Source code in src/lonkit/continuous/sampling.py
BasinHoppingSamplerConfig
dataclass
¶
Configuration for Basin-Hopping sampling.
Attributes:
| Name | Type | Description |
|---|---|---|
n_runs |
int
|
Number of independent Basin-Hopping runs. Default: |
n_iter_no_change |
int | None
|
Maximum number of consecutive non-improving perturbations before stopping each run.
Use |
max_iter |
int | None
|
Optional maximum number of total iterations (perturbation steps) per run.
Use |
step_mode |
StepMode
|
Perturbation mode - |
step_size |
float
|
Perturbation magnitude (interpretation depends on step_mode). Default: |
fitness_precision |
int | None
|
Decimal precision for fitness values.
Use |
coordinate_precision |
int | None
|
Decimal precision for coordinate rounding and hashing.
Solutions rounded to this precision are considered identical.
Use |
bounded |
bool
|
Whether to enforce domain bounds during perturbation. Default: |
minimizer_method |
str | Callable | None
|
Minimization method passed to |
minimizer_options |
dict | None
|
Solver-specific options passed as the |
seed |
int | None
|
Random seed for reproducibility. Default: |
n_jobs |
int | None
|
The maximum number of concurrently running |
Reproducibility |
is guaranteed across different ``n_jobs`` values when ``seed`` is set. Default
|
|
Source code in src/lonkit/continuous/sampling.py
BasinHoppingSampler ¶
Basin-Hopping sampler for constructing Local Optima Networks.
Basin-Hopping is a global optimization algorithm that combines random perturbations with local minimization. This implementation records transitions between local optima for LON construction.
Example
config = BasinHoppingSamplerConfig(n_runs=10, n_iter_no_change=250) sampler = BasinHoppingSampler(config) result = sampler.sample(objective_func, domain) lon = sampler.sample_to_lon(result)
Source code in src/lonkit/continuous/sampling.py
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 | |
sample ¶
sample(
func: Callable[[ndarray], float],
domain: list[tuple[float, float]],
initial_points: ndarray | None = None,
progress_callback: Callable[[int, int], None]
| None = None,
verbose: bool = False,
) -> BasinHoppingResult
Run Basin-Hopping sampling and construct trace data.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
func
|
Callable[[ndarray], float]
|
Objective function to minimize (f: R^n_var -> R). |
required |
domain
|
list[tuple[float, float]]
|
List of (lower, upper) bounds per dimension. |
required |
initial_points
|
ndarray | None
|
Optional array of shape ( |
None
|
progress_callback
|
Callable[[int, int], None] | None
|
Optional callback(run, total_runs) for progress.
Called after each run completes. Default: |
None
|
verbose
|
bool
|
If True, show a progress bar during sampling. Default: |
False
|
Returns: BasinHoppingResult: Result of the sampling run.
Source code in src/lonkit/continuous/sampling.py
sample_to_lon ¶
Construct a LON from a BasinHoppingResult.
Convenience wrapper that passes the trace data from a sampling result
to LON.from_trace_data(). Equivalent to calling
LON.from_trace_data(sampler_result.trace_df, config=lon_config).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
sampler_result
|
BasinHoppingResult
|
Result returned by |
required |
lon_config
|
LONConfig | None
|
LON construction configuration. If |
None
|
Returns:
| Type | Description |
|---|---|
LON
|
|
Source code in src/lonkit/continuous/sampling.py
BasinHoppingResult
dataclass
¶
Result of a Basin-Hopping sampling run.
Attributes:
| Name | Type | Description |
|---|---|---|
trace_df |
DataFrame
|
DataFrame with columns |
raw_records |
list[dict]
|
List of dicts with detailed iteration data, including all
perturbation attempts (both accepted and rejected). Each dict has keys
|
nfev |
int
|
Total number of objective function evaluations across all runs. |
Source code in src/lonkit/continuous/sampling.py
Step Size Estimation¶
StepSizeEstimatorConfig
dataclass
¶
Configuration for step size estimation.
Attributes:
| Name | Type | Description |
|---|---|---|
n_samples |
int
|
Number of random initial points to evaluate. Default: |
n_perturbations |
int
|
Number of perturbations per sample point. Default: |
target_escape_rate |
float
|
Target escape rate to find (0.5 = 50% of perturbations escape). Default: |
search_precision |
int
|
Decimal digits of precision for step size search.
The algorithm refines by dividing the increment by 10 each iteration,
so |
coordinate_precision |
int | None
|
Decimal precision for coordinate rounding and hashing.
Solutions rounded to this precision are considered identical.
Use |
minimizer_method |
str | Callable | None
|
Minimization method passed to |
minimizer_options |
dict | None
|
Solver-specific options passed as the |
bounded |
bool
|
Whether to enforce domain bounds during perturbation. Default: |
seed |
int | None
|
Random seed for reproducibility. Default: |
Source code in src/lonkit/continuous/step_size.py
StepSizeEstimator ¶
Estimates the optimal percentage step size for basin-hopping sampling.
The optimal step size is defined as the one that produces an escape rate
closest to a target X (default 0.5), meaning ~ X * 100% of perturbations lead to
a different local optimum.
The search uses a decimal refinement approach, progressively narrowing the step size to the configured precision.
Computational cost
_compute_escape_rate is called once per tested step size. Each call runs
n_samples baseline minimizations and n_samples * n_perturbations
perturbed minimizations (defaults: 100 + 3000 minimizations per step size).
Since multiple step sizes are evaluated during refinement
(search_precision dependent), total minimizations can become large for
expensive objective functions. For expensive objectives, start by reducing
n_samples and/or n_perturbations, then increase them once a reasonable
step-size range is identified.
Example
import numpy as np estimator = StepSizeEstimator() result = estimator.estimate(problem, [(-5, 5)] * 2) print(f"Step size: {result.step_size}, escape rate: {result.escape_rate:.3f}")
Source code in src/lonkit/continuous/step_size.py
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 | |
estimate ¶
Estimate the optimal step size for basin-hopping sampling.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
func
|
Callable[[ndarray], float]
|
Objective function to minimize (f: R^n -> R). |
required |
domain
|
list[tuple[float, float]]
|
List of (lower, upper) bounds per dimension. |
required |
Returns:
| Type | Description |
|---|---|
StepSizeResult
|
StepSizeResult with the estimated step size, achieved escape rate, and error. |
Source code in src/lonkit/continuous/step_size.py
StepSizeResult
dataclass
¶
Result of step size estimation.
Attributes:
| Name | Type | Description |
|---|---|---|
step_size |
float
|
Estimated optimal step size (percentage of domain range). |
escape_rate |
float
|
Achieved escape rate at this step size. |
error |
float
|
Absolute difference between achieved and target escape rate. |