Guest User

Untitled

a guest
May 23rd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. D = 1 # Dimensionality of the data. Since your data is 1-D this would be 1
  2. num_unrollings = 50 # Number of time steps you look into the future.
  3. batch_size = 500 # Number of samples in a batch
  4. num_nodes = [200,200,150] # Number of hidden nodes in each layer of the deep LSTM stack we're using
  5. n_layers = len(num_nodes) # number of layers
  6. dropout = 0.2 # dropout amount
  7.  
  8. tf.reset_default_graph() # This is important in case you run this multiple times
Add Comment
Please, Sign In to add comment