Skip to content

Commit 4dedcb6

Browse files
committed
fixed imports
1 parent 997ea67 commit 4dedcb6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

plot_elm_comparison.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@
7272
from sklearn.cross_validation import train_test_split
7373
from sklearn.linear_model import LogisticRegression
7474

75-
from sklearn.neural_networks.elm import ELMClassifier
76-
from sklearn.neural_networks.random_hidden_layer import RBFRandomHiddenLayer
77-
from sklearn.neural_networks.random_hidden_layer import SimpleRandomHiddenLayer
75+
from elm import ELMClassifier
76+
from random_hidden_layer import RBFRandomHiddenLayer
77+
from random_hidden_layer import SimpleRandomHiddenLayer
7878

7979

8080
def get_data_bounds(X):

0 commit comments

Comments
 (0)