From 74bceb6452271a44f2652d0a209970de15b1f9cc Mon Sep 17 00:00:00 2001 From: Feynman Liang Date: Thu, 22 Jun 2017 08:02:36 -0700 Subject: [PATCH] Clean cifar10 docs --- doc/source/cifar10.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/cifar10.rst b/doc/source/cifar10.rst index f81aec3c..c40d2f92 100644 --- a/doc/source/cifar10.rst +++ b/doc/source/cifar10.rst @@ -126,7 +126,7 @@ We now have a cost function that we want to minimize, typically by following the .. code-block:: python - from neon.optimizers import GradientDescentMomentum, RMSProp + from neon.optimizers import GradientDescentMomentum optimizer = GradientDescentMomentum(learning_rate=0.005, momentum_coef=0.9)