-
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.
Merge pull request #35 from alan-turing-institute/scikit-learn-estima…
…tors convert models to scikit learn estimators
- Loading branch information
Showing
15 changed files
with
541 additions
and
505 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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import logging | ||
|
||
logging.basicConfig( | ||
level=logging.INFO, | ||
# format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', | ||
format="%(message)s", | ||
# filename='autoemulate.log' | ||
) | ||
logging.captureWarnings(True) |
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
from .base import Emulator | ||
from .gaussian_process import GaussianProcess | ||
from .gaussian_process2 import GaussianProcess2 | ||
from .gaussian_process_sk import GaussianProcessSk | ||
from .neural_network import NeuralNetwork | ||
from .random_forest import RandomForest | ||
|
||
MODEL_REGISTRY = { | ||
"GaussianProcess": GaussianProcess, | ||
"GaussianProcess2": GaussianProcess2, | ||
"GaussianProcessSk": GaussianProcessSk, | ||
"NeuralNetwork": NeuralNetwork, | ||
"RandomForest": RandomForest, | ||
} |
Oops, something went wrong.