Skip to content
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 hyperparamter sweep to sweep.py; Fall back to eig when eigh fails #235

Merged
merged 15 commits into from
May 5, 2023
Merged
Changes from 1 commit
Commits
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
remove duplicate line
  • Loading branch information
AlexTMallen committed May 1, 2023
commit 2817f15ce13fa3ca0278b86d99debb931608b176
3 changes: 0 additions & 3 deletions elk/training/sweep.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,6 @@ def execute(self):
step = self.hparam_step
weights = np.arange(0.0, 1.0 + step, step) if step > 0 else [None]

step = self.hparam_step
weights = np.arange(0.0, 1.0 + step, step) if step > 0 else [None]

for i, model in enumerate(self.models):
print(colorize(f"===== {model} ({i + 1} of {M}) =====", "magenta"))

Expand Down