-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
37 additions
and
48 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
from .mlp import MLPModule | ||
from .neural_networks import get_module | ||
from .base import TorchModule | ||
from .get_module import get_module |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
from autoemulate.emulators.neural_networks import TorchModule | ||
from autoemulate.emulators.neural_networks.mlp import MLPModule | ||
|
||
|
||
def get_module(module: str | TorchModule, module_args) -> TorchModule: | ||
""" | ||
Return the module instance for NeuralNetRegressor. If `module` is a string, | ||
then initialize a TorchModule with the same registered name. If `module` is | ||
already a TorchModule, then return it as is. | ||
""" | ||
if not isinstance(module, TorchModule): | ||
match module: | ||
case "mlp": | ||
module = MLPModule(**module_args) | ||
case _: | ||
raise NotImplementedError(f"Module {module} not implemented.") | ||
return module |
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