-
Notifications
You must be signed in to change notification settings - Fork 9
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
Make sure that supercell_matrices of single-atom-displaced and rattled supercells are the same per default #258
Merged
Merged
Changes from 32 commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
3022c3b
increase M3GNET RMSE tolereance because of fluctuations
QuantumChemist a01c5a6
prettify GAP parameters representation and remove GAP related things …
QuantumChemist f3d35a0
rearrange file entires to make it look better, added user-defined for…
QuantumChemist 1b7e6c0
fix unit test
QuantumChemist 3754c8c
fix unit test
QuantumChemist d76dc84
small format fix
QuantumChemist 4dc423e
fix unit test
QuantumChemist c02bfc3
removed a comment
QuantumChemist 1b95862
decrease default max_length for rattled supercells
QuantumChemist 8d0c3a8
Merge branch 'autoatml:main' into main
QuantumChemist 0337f46
reducing max_length default a bit
QuantumChemist e51db69
Merge branch 'main' of github.com:QuantumChemist/autoplex
QuantumChemist eacd697
added missing doctsring
QuantumChemist c89312c
set max_length to 20
QuantumChemist a508a53
set max_length to 20
QuantumChemist b8ae70c
add fallback to single-atom-dsipl- supercells
QuantumChemist 10ac1e5
minor changes in file format
QuantumChemist bc5ca78
supercell_matrix is only determined once by reduce_supercell_size_job
QuantumChemist cb4c995
filter out supercell_matrix key to prevent problems with mismacthing …
QuantumChemist 9f02c13
filter out supercell_matrix mpid key as mpids are not used here
QuantumChemist d60d9fc
adjust job number and remove print
QuantumChemist 75f2668
adjust defaults
QuantumChemist 6da2b0f
fix unit tests
QuantumChemist 14a9eb5
fix unit tests
QuantumChemist 776384d
putting the phonon GAP defaults to SI settings
QuantumChemist 6b3ceb2
fix unit test
QuantumChemist 125eec1
fix unit test
QuantumChemist a0f3d83
fix unit test
QuantumChemist f35ef28
added user info about supercell settings
QuantumChemist bbae8f5
Merge branch 'autoatml:main' into main
QuantumChemist bc7dec9
addressing Yb's comments
QuantumChemist 5b35adf
adjust unit test
QuantumChemist a84458d
fix unit test
QuantumChemist 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
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
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
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
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.
@JaGeo , I restructured the code in a way that the
reduce_supercell_size_job
is only called once and the matrix is passed like that. But I have left thereduce_supercell_size_job
(which only will be triggered if no matrix is gieven) in the other functions as it was before, too, in case a user wants to use the single-atom displ. and rattled supercell constructors separately.I have thought a lot about it and I don't see a reason why single-atom displ. and rattled supercells of the same wf should have different settings. Do you think I shall still add the possibility?
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.
It might be that someone wants it. At the moment, I also do not see a clear use case. Let's, for now, keep it with this single job. Just make sure everything works with this functionality for now and we just keep in mind that we don't have it implemented yet :).
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 can see if I can maybe put some "NotImplemented" warning. In principle the user can still at the moment pass different settings if they call the supercell constructors separately.
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.
Added a simple user info instead