diff --git a/docs/guide_advanced.rst b/docs/guide_advanced.rst index b1bb18c..e2cd7d0 100644 --- a/docs/guide_advanced.rst +++ b/docs/guide_advanced.rst @@ -15,7 +15,7 @@ Here's how to setup such a pipeline with a multi-layer perceptron as a classifie .. code:: python - from sknn.mlp improt Classifier, Layer + from sknn.mlp import Classifier, Layer from sklearn.pipeline import Pipeline from sklearn.preprocessing import MinMaxScaler @@ -104,4 +104,4 @@ In the cases when you have large numbers of hyper-parameters that you want to tr 'hidden0__type': ["Rectifier", "Sigmoid", "Tanh"]}) rs.fit(a_in, a_out) -This works for both :class:`sknn.mlp.Classifier` and :class:`sknn.mlp.Regressor`. \ No newline at end of file +This works for both :class:`sknn.mlp.Classifier` and :class:`sknn.mlp.Regressor`.