Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Tathagatd96/d91ef28c9550885d6923e64b47895697 to your computer and use it in GitHub Desktop.
Save Tathagatd96/d91ef28c9550885d6923e64b47895697 to your computer and use it in GitHub Desktop.
num_inputs=1
num_neurons=100
num_outputs=1
learning_rate=0.001
num_iter=5000
batch_size=1
x=tf.placeholder(tf.float32,[None,num_time_steps,num_inputs])
y=tf.placeholder(tf.float32,[None,num_time_steps,num_outputs])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment