-
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
5 changed files
with
15 additions
and
11 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,16 +1,16 @@ | ||
from .base import Emulator | ||
from .gaussian_process import GaussianProcess | ||
from .gaussian_process_sk import GaussianProcessSk | ||
from .neural_network import NeuralNetwork | ||
from .neural_net_sk import NeuralNetSk | ||
from .random_forest import RandomForest | ||
from .radial_basis import RadialBasis | ||
from .neural_net_pt import SkorchMLPRegressor | ||
from .neural_net_torch import NeuralNetTorch | ||
|
||
MODEL_REGISTRY = { | ||
# "GaussianProcess": GaussianProcess, | ||
"GaussianProcessSk": GaussianProcessSk, | ||
"NeuralNetwork": NeuralNetwork, | ||
"NeuralNetSk": NeuralNetSk, | ||
"RandomForest": RandomForest, | ||
"RadialBasis": RadialBasis, | ||
"SkorchMLPRegressor": SkorchMLPRegressor, | ||
# "NeuralNetTorch": NeuralNetTorch, | ||
} |
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