docs(optimizr): add logo and fix rtd deps

This commit is contained in:
Melvin Alvarez
2026-02-09 16:15:41 +01:00
parent c1f4c0bde7
commit 43af949904
28 changed files with 805 additions and 220 deletions
+14
View File
@@ -0,0 +1,14 @@
# API: grid_search
```python
from optimizr import grid_search
best_params, best_score = grid_search(
objective_fn,
param_grid,
)
```
- `objective_fn`: callable receiving a dict of parameters and returning a scalar loss
- `param_grid`: dict of name -> list of values to enumerate
- Returns `(best_params: dict, best_score: float)`