We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41693aa commit 2910f13Copy full SHA for 2910f13
keras_tuner/__init__.py
@@ -25,6 +25,7 @@
25
from keras_tuner.engine.oracle import Oracle
26
from keras_tuner.engine.tuner import Tuner
27
from keras_tuner.tuners import BayesianOptimization
28
+from keras_tuner.tuners import GeneticOptimization
29
from keras_tuner.tuners import GridSearch
30
from keras_tuner.tuners import Hyperband
31
from keras_tuner.tuners import RandomSearch
keras_tuner/tuners/__init__.py
@@ -14,6 +14,7 @@
14
15
16
from keras_tuner.tuners.bayesian import BayesianOptimization
17
+from keras_tuner.tuners.genetic import GeneticOptimization
18
from keras_tuner.tuners.gridsearch import GridSearch
19
from keras_tuner.tuners.hyperband import Hyperband
20
from keras_tuner.tuners.randomsearch import RandomSearch
0 commit comments