-
Notifications
You must be signed in to change notification settings - Fork 39
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
Add local search sampler #208
Merged
Merged
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
1ccf16c
draft commit
hyeok9855 a3af467
Merge branch 'master' into hyeok9855/local-search
hyeok9855 d7d95ca
fix error in backward_masks
hyeok9855 b075d9e
[WIP] commit for sharing the redundancy issue
hyeok9855 8481673
fix a minor error in the Trajectory.__repr__
hyeok9855 0cc32f7
add and fix the
hyeok9855 4e11c27
Merge branch 'hyeok9855/reverse_backward_trajectories' into hyeok9855…
hyeok9855 e7fa8b6
add Metropolis-Hastings acceptance rule
hyeok9855 21ce0c2
Minor refactors based on review
hyeok9855 5ce1fdc
Minor refactors based on review
hyeok9855 6f13cff
vectorize
hyeok9855 958139f
vectorize local_search
hyeok9855 2672d9b
add docstring
hyeok9855 8529e4a
add tests for vectorization
hyeok9855 a2837bd
fix train_hypergrid_ls script
354ee04
add validation metrics in train_hypergrid_simple examples
hyeok9855 9c60997
update readme
hyeok9855 26126df
Merge branch 'master' into hyeok9855/local-search
hyeok9855 731e081
make pyright happy
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the major blocker here? Anyone know?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure either... This was from here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One guess is this:
In line 436-443:
Also, in line 461-463:
These assume that the action is an integer, which is not true for continuous case, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The blocker: see my response to line 462 of this file in the PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this function will not work on non-discrete environments!