You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the example above, I had to import the MhaElmRegressor class. This is the class that contains all Metaheuristics-based ELM models for regression problems.
101
102
Then, I defined parameters for the Whale Optimization algorithm. And I defined parameters for the Whale Optimization-based ELM model.
@@ -110,7 +111,8 @@ MhaElmClassifier class (these are hybrid models combining metaheuristics algorit
110
111
111
112
from intelelm import ElmClassifier
112
113
113
-
model = ElmClassifier(layer_sizes=(10, ), act_name="elu", seed=42)
114
+
model = ElmClassifier(layer_sizes=(10, ), act_name="elu", seed=42,
0 commit comments