Built-in utilities for parameter fitting
Open
- Dominant language
- Python
- Stars
- 157
- Forks
- 16
- PR merge metrics
- No merged PRs in 30d
Description
We already have examples/recipes, but it could be even easier for people if there were built-in utilities:
```python
@memo
def f(alpha, beta): ...
f.grid_search(
loss=lambda pred: …,
grid=(np.linspace(…), np.linspace(…), …)
)
f.gradient_fit(
loss=lambda pred: …,
init=(0, 0.5),
step_size=…,
num_iterations=…
)
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.