Open
Conversation
9bbdf03 to
d009f46
Compare
0262f23 to
3aec405
Compare
Now mace and nequip both output to ./janus_results by default.
Co-authored-by: Jacob Wilkins <46597752+oerc0122@users.noreply.github.com>
25efa36 to
c917ba7
Compare
Co-authored-by: Elliott Kasoar <45317199+ElliottKasoar@users.noreply.github.com>
oerc0122
previously approved these changes
Mar 13, 2026
Collaborator
oerc0122
left a comment
There was a problem hiding this comment.
Just some minor optional things, otherwise looks good.
Comment on lines
+638
to
+641
| with open(metrics_path) as metrics: | ||
| lines = metrics.readlines() | ||
| assert len(lines) == 2 | ||
| assert lines[0].split(",")[0] == "epoch" |
Collaborator
There was a problem hiding this comment.
Suggested change
| with open(metrics_path) as metrics: | |
| lines = metrics.readlines() | |
| assert len(lines) == 2 | |
| assert lines[0].split(",")[0] == "epoch" | |
| lines = metrics_path.read_text(encoding="utf-8") | |
| assert len(lines) == 2 | |
| assert lines[0].split(",")[0] == "epoch" |
Comment on lines
+583
to
+586
| with open(metrics_path) as metrics: | ||
| lines = metrics.readlines() | ||
| assert len(lines) == 3 | ||
| assert lines[0].split(",")[0] == "epoch" |
Collaborator
There was a problem hiding this comment.
Suggested change
| with open(metrics_path) as metrics: | |
| lines = metrics.readlines() | |
| assert len(lines) == 3 | |
| assert lines[0].split(",")[0] == "epoch" | |
| lines = metrics_path.read_text(encoding="utf-8") | |
| assert len(lines) == 3 | |
| assert lines[0].split(",")[0] == "epoch" |
Might as well do this Co-authored-by: Jacob Wilkins <46597752+oerc0122@users.noreply.github.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
The only curve ball with this one is that the atom attributes
forces,energy, andstressmust be called that, as far as I can tell.