Skip to content

Typed Optimization #531

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 26 commits into from
Dec 27, 2024
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
cf963b1
WIP
till-m Nov 9, 2022
81321f3
Add ML example
till-m Nov 9, 2022
4106850
Save for merge
till-m May 23, 2023
5a3f2de
Merge remote-tracking branch 'origin/master' into parameter-types
till-m May 23, 2023
ac7f253
Merge remote-tracking branch 'origin/master' into parameter-types
till-m May 25, 2023
0ff88fc
Merge branch 'master' into parameter-types
till-m Oct 1, 2024
5d34efa
Update
till-m Oct 6, 2024
2b64ff0
Parameter types more (#13)
phi-friday Oct 9, 2024
3920e0f
Use `.masks` not `._masks`
till-m Oct 9, 2024
241e5c7
User `super` to call kernel
till-m Oct 9, 2024
68909ad
Update logging for parameters
till-m Oct 12, 2024
1a03b05
Disable SDR when non-float parameters are present
till-m Oct 12, 2024
f17c96a
Add demo script for typed optimization
till-m Oct 12, 2024
3c4c298
Update parameters, testing
till-m Oct 15, 2024
264b79e
Remove sorting, gradient optimize only continuous params
till-m Oct 29, 2024
b97c11e
Go back to `wrap_kernel`
till-m Oct 29, 2024
9543fb8
Update code
till-m Oct 30, 2024
7c84390
Remove `tqdm` dependency, use EI acq
till-m Nov 1, 2024
f1e4493
Add more text to typed optimization notebook.
till-m Nov 1, 2024
b765b5d
Merge branch 'master' into parameter-types
till-m Nov 1, 2024
187fd08
Save files while moving device
till-m Nov 15, 2024
31223a9
Update with custom parameter type example
till-m Dec 10, 2024
4476271
Merge branch 'master' into parameter-types
till-m Dec 18, 2024
9b1fbc1
Mention that parameters are not sorted
till-m Dec 18, 2024
1a54e1b
Change array reg warning
till-m Dec 18, 2024
05fbbcd
Update Citations, parameter notebook
till-m Dec 25, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Mention that parameters are not sorted
  • Loading branch information
till-m committed Dec 18, 2024
commit 9b1fbc1568139f10cca7b4bc532f6201dae2868a
2 changes: 1 addition & 1 deletion examples/basic-tour.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"Or as an iterable. Beware that the order has to be alphabetical. You can usee `optimizer.space.keys` for guidance"
"Or as an iterable. Beware that the order has to match the order of the initial `pbounds` dictionary. You can usee `optimizer.space.keys` for guidance"
]
},
{
Expand Down
Loading