Created
June 22, 2018 10:06
-
-
Save Tathagatd96/d91ef28c9550885d6923e64b47895697 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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