深度学习------RNN基础

1. 手动实现RNN的实例

 #手动实现RNN的实例
import tensorflow as tf
import numpy as np
tf.set_random_seed(777)

n_inputs = 3 #每个样本3个特征
n_neurons = 5 #隐藏状态,神经元个数

X0 = tf.placeholder(tf.float32, 

你可能感兴趣的:(深度学习,rnn,tensorflow)