-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
**v0.2.0**: Imrprove UX and performance
- Change optimizer from L-BFGS to vanilla BFGS after quantitative experiments - Add an LLM example data & notebook - Improve documentation regarding the initial parameter grid & optimization tips - Make all arguments optional except `param_grid`; previously `project_dir` and `seed_ranges` were unnecessarily required - Debug dtype issues around visualization
- Loading branch information
1 parent
8e76eb5
commit e1847b3
Showing
31 changed files
with
1,619 additions
and
359 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ __pycache__/ | |
# Distribution / packaging | ||
dist/ | ||
*.egg-info/ | ||
build/ | ||
|
||
# Misc. | ||
.pytest_cache/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Utility functions.""" | ||
|
||
from __future__ import annotations # PEP 604 backport | ||
|
||
import itertools | ||
|
Oops, something went wrong.