mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-07-17 08:28:07 -05:00
Run quartodoc build against the refactored package (engine/ extracted from core/, infra->infrastructure): regenerate the API reference so every stub points at the new paths. Adds engine.*/infrastructure.* stubs, removes the 41 stale core.solver.* / core.engine.* / core.scenarios.* / core.config.* / core.evaluation.* / infra*.qmd orphans, and refreshes the package pages (core now primitives-only) + index. Verified: all 47 documented symbols resolve in the new package; every index link resolves; zero stale mlsysim.core.<engine-mod> / mlsysim.infra references anywhere in docs/. (objects.json inventory is gitignored -- regenerated at build.)
26 lines
742 B
Plaintext
26 lines
742 B
Plaintext
# engine.dse.DSE { #mlsysim.engine.dse.DSE }
|
|
|
|
```python
|
|
engine.dse.DSE(space, objective, constraints=None)
|
|
```
|
|
|
|
Declarative Design Space Exploration (DSE) Engine.
|
|
|
|
A unified interface for navigating ML system trade-offs through an exhaustive grid
|
|
search over a defined parameter space, filtering by constraints and ranking by objective.
|
|
|
|
## Methods
|
|
|
|
| Name | Description |
|
|
| --- | --- |
|
|
| [search](#mlsysim.engine.dse.DSE.search) | Executes a grid search across the defined space by passing each parameter combination |
|
|
|
|
### search { #mlsysim.engine.dse.DSE.search }
|
|
|
|
```python
|
|
engine.dse.DSE.search(evaluator_fn)
|
|
```
|
|
|
|
Executes a grid search across the defined space by passing each parameter combination
|
|
to the provided evaluation function.
|