-
Notifications
You must be signed in to change notification settings - Fork 23
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
Bens bugfix #19
Closed
Closed
Bens bugfix #19
Conversation
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
…ckpoint.pt, as models and checkpoints save now as .pt
Fix Missing parenthesis in EwaldRealSpaceScreening(AlphaScreening) and WolfScreening(AlphaScreening) in super/base class (AlphaScreening) initialization.
Four additions: Imported Calculator from ase.calculators.calculator (base Calculator class for ASE). Made HippynnCalculator inherit Calculator. Strangely, although HippynnCalculator already inherits interface.Calculator, this appears to be the incorrect class, and when running a LinearCombinationCalculator for example, it will say it must inherit Calculator as defined in ase.calculators.calculator. In the __init__ function for HippynnCalculator, manually added the property "energy" to self.implemented_properties In the calculate function in HippynnCalculator, add key in self.results, "energy", and set it equal to self.results["potential_energy"] Added comments on each line added stating that each change is required for using ASE Mixing Calculators
Environment variable HIPPYNN_PROGRESS not handled correctly
Allow HIPNN to work with ASE Mixing Calculators
Fixed missing parenthesis.
Change model.pkl to model.pt, as models now save as .pt
Fix typo, modoel -> model, and change best_checkpoint.pkl to best_checkpoint.pt, as models and checkpoints save now as .pt
Bugfix: Ensuring that indexing tensors are of type torch.long.
Explicitly convert index tensors to int64 in ASE calculator.
LAMMPS ML-IAP Interface
* Add a library setting for transparent plots * Update styles of documentations * Multiple fixes 1. Ignore files from editable installation 2. code intellisense for tools.py * Minor update on TRANSPARENT_PLOT doc
Better handling of devices for restarting. - includes improved documentation files - new argument model_device when reloading checkpoints
This enables operations with trajectory printing
Merged
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.
Various additions to ase interface to make compatible with recent ase changes.