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

Quickfixing the ACSD #513

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 2 additions & 1 deletion mala/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,10 @@
HyperparameterOAT,
HyperparameterNASWOT,
HyperparameterOptuna,
HyperparameterACSD,
HyperparameterDescriptorScoring,
ACSDAnalyzer,
Runner,
MutualInformationAnalyzer,
)
from .targets import LDOS, DOS, Density, fermi_function, AtomicForce, Target
from .interfaces import MALA
Expand Down
1 change: 1 addition & 0 deletions mala/common/parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -1101,6 +1101,7 @@ def __init__(self):

# For accelerated hyperparameter optimization.
self.acsd_points = 100
self.mutual_information_points = 20000

@property
def rdb_storage_heartbeat(self):
Expand Down
3 changes: 2 additions & 1 deletion mala/network/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
from .hyperparameter_oat import HyperparameterOAT
from .hyperparameter_naswot import HyperparameterNASWOT
from .hyperparameter_optuna import HyperparameterOptuna
from .hyperparameter_acsd import HyperparameterACSD
from .hyperparameter_descriptor_scoring import HyperparameterDescriptorScoring
from .acsd_analyzer import ACSDAnalyzer
from .mutual_information_analyzer import MutualInformationAnalyzer
from .runner import Runner
Loading