Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
15919c0
Work towards making Storage objects picklable and resumable by mp.Poo…
bpkroth May 9, 2025
3cfecb1
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] May 9, 2025
a2007cb
remove more annotations and an unused import
bpkroth May 9, 2025
956c02c
add code to restore a status from the db
bpkroth May 9, 2025
beb1eac
Add tunables and optimization targets parameters to get_experiment_by…
bpkroth May 9, 2025
302b93c
implement get_trial_by_exp and get_exp_by_id
bpkroth May 9, 2025
eb6110f
handle restoring status of trials upon reload from db
bpkroth May 9, 2025
d97541f
save vscode settings
bpkroth May 9, 2025
2e6ed65
reformat
bpkroth May 9, 2025
2be1187
pylint
bpkroth May 9, 2025
a9a8b4f
missing annotation
bpkroth May 9, 2025
09eedde
Adding tests for pickling of the storage and fetching experiment and …
bpkroth May 9, 2025
e8cd6b2
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] May 9, 2025
fa4db07
add more checks
bpkroth May 9, 2025
4f6a13b
refactor
bpkroth May 9, 2025
557f4b0
disable on windwos
bpkroth May 10, 2025
f4f2365
accept recommended fix from copilot for unknown bug
bpkroth May 10, 2025
dd376bf
Merge branch 'main' into refactor/make-storage-picklable
bpkroth May 12, 2025
5148579
Merge branch 'main' into refactor/make-storage-picklable
bpkroth May 12, 2025
41174f3
Merge branch 'main' into refactor/make-storage-picklable
bpkroth May 12, 2025
6f4a7d5
tweak
bpkroth May 12, 2025
f2e2060
tweak
bpkroth May 12, 2025
823aaf0
comments
bpkroth May 12, 2025
dedd1d3
more tests
bpkroth May 12, 2025
87a54be
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] May 12, 2025
84d45a8
update status parsing
bpkroth May 13, 2025
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
comments
  • Loading branch information
bpkroth committed May 12, 2025
commit 823aaf0bcd7fe0f8a6ca7252f491348d1bd66f4b
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
from mlos_bench.tunables.tunable_groups import TunableGroups


# TODO: When we introduce ParallelTrialScheduler warn at config startup time
# that it is incompatible with sqlite storage on Windows.
@pytest.mark.skipif(
sys.platform == "win32",
reason="Windows doesn't support multiple processes accessing the same file.",
Expand Down