From 2523e0c1b1e825031faa00773598571e4d7f6fa6 Mon Sep 17 00:00:00 2001 From: Morvan Zhou Date: Thu, 11 May 2017 12:06:47 +1000 Subject: [PATCH] update --- tutorial-contents/501_why_torch_dynamic_graph.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tutorial-contents/501_why_torch_dynamic_graph.py b/tutorial-contents/501_why_torch_dynamic_graph.py index e1c4133..90b4f3e 100644 --- a/tutorial-contents/501_why_torch_dynamic_graph.py +++ b/tutorial-contents/501_why_torch_dynamic_graph.py @@ -16,11 +16,8 @@ import matplotlib.pyplot as plt torch.manual_seed(1) # reproducible # Hyper Parameters -BATCH_SIZE = 64 -TIME_STEP = 5 # rnn time step / image height INPUT_SIZE = 1 # rnn input size / image width LR = 0.02 # learning rate -DOWNLOAD_MNIST = True # set to False if have downloaded the data class RNN(nn.Module):