From 73bcb88911c058f95002ce2389fc05589b0bc9ce Mon Sep 17 00:00:00 2001 From: Sergey Sokolov Date: Thu, 28 Mar 2019 16:55:23 -0700 Subject: [PATCH 1/4] Fix nightly build of 1.4.x Nightly build of 1.4.x keeps failing, and while in 1.5.0 there was a major rewrite for this tutorial, since 1.4.0 is already published, I made the smallest change possible to fix that. I checked the build after this change on my EC2 instance - all good. --- docs/tutorials/gluon/mnist.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/tutorials/gluon/mnist.md b/docs/tutorials/gluon/mnist.md index 3758f561a573..5a4a37551eae 100644 --- a/docs/tutorials/gluon/mnist.md +++ b/docs/tutorials/gluon/mnist.md @@ -279,6 +279,7 @@ trainer = gluon.Trainer(net.collect_params(), 'sgd', {'learning_rate': 0.03}) ```python # Use Accuracy as the evaluation metric. +epoch = 10 metric = mx.metric.Accuracy() softmax_cross_entropy_loss = gluon.loss.SoftmaxCrossEntropyLoss() From dce4a6cafd752258f481f519234378faac8eb487 Mon Sep 17 00:00:00 2001 From: Sergey Sokolov Date: Fri, 29 Mar 2019 14:32:23 -0700 Subject: [PATCH 2/4] Force build From ce48e626d322ca5e23e3da6ba1c51bffefde0f08 Mon Sep 17 00:00:00 2001 From: Sergey Sokolov Date: Tue, 2 Apr 2019 11:54:34 -0700 Subject: [PATCH 3/4] Force build 2 From ae3dbcf41a5c2c59de5ad7da4627b23a16d02430 Mon Sep 17 00:00:00 2001 From: Sergey Sokolov Date: Wed, 10 Apr 2019 11:50:23 -0700 Subject: [PATCH 4/4] Force build once more