builder
tit.opt.flex.builder ¶
SimNIBS object construction and reporting for flex-search.
All SimNIBS imports are isolated here so that flex.py remains a
pure-Python orchestrator with zero SimNIBS coupling.
Public API¶
build_optimization
Construct a SimNIBS TesFlexOptimization from a
:class:~tit.opt.config.FlexConfig.
configure_optimizer_options
Apply DE hyperparameters to a SimNIBS optimization object.
generate_report
Create an HTML report summarising the flex-search run.
See Also¶
tit.opt.flex.flex.run_flex_search : Calls these functions internally. tit.opt.config.FlexConfig : Configuration dataclass consumed here.
build_optimization ¶
build_optimization(config: FlexConfig)
Build a SimNIBS TesFlexOptimization object from a FlexConfig.
Translates every field from config into the corresponding SimNIBS attribute, including electrode geometry, ROI specification, and mapping settings.
Parameters¶
config : FlexConfig Fully-populated flex-search configuration.
Returns¶
TesFlexOptimization
A configured SimNIBS optimization object ready for
opt.run().
See Also¶
configure_optimizer_options : Apply DE solver parameters after build. tit.opt.flex.utils.configure_roi : Delegates ROI setup.
Source code in tit/opt/flex/builder.py
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 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 | |
configure_optimizer_options ¶
configure_optimizer_options(opt, config: FlexConfig, logger: Logger) -> None
Apply differential-evolution solver parameters to a SimNIBS object.
Reads optional DE hyperparameters from config and writes them
into opt._optimizer_options_std. Parameters that are None
in the config are left at their SimNIBS defaults.
Parameters¶
opt : TesFlexOptimization SimNIBS optimization object (mutated in-place). config : FlexConfig Configuration carrying optional DE parameters. logger : logging.Logger Logger for debug-level messages.
See Also¶
build_optimization : Creates the opt object that this function configures.
Source code in tit/opt/flex/builder.py
generate_report ¶
generate_report(config: FlexConfig, n_multistart: int, optim_funvalue_list: ndarray, best_opt_idx: int, base_output_folder: str, logger: Logger) -> None
Generate an HTML report summarising the flex-search run.
Delegates to :class:~tit.reporting.FlexSearchReportGenerator to
produce a self-contained HTML file in the project's reports
directory.
Parameters¶
config : FlexConfig
Configuration with all run parameters.
n_multistart : int
Number of multi-start DE runs executed.
optim_funvalue_list : numpy.ndarray
Array of objective function values, one per restart.
best_opt_idx : int
Zero-based index of the best run (-1 if all failed).
base_output_folder : str
Absolute path to the output directory (used to locate
electrode_positions.json).
logger : logging.Logger
Logger for info-level progress messages.
Source code in tit/opt/flex/builder.py
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 | |