人工智能
冰冰火
这个作者很懒,什么都没留下…
展开
-
RNN调试错误:lstm_cell = tf.contrib.rnn.core_rnn_cell.BasicLSTMCell(lstm_size) 方法已失效
调试递归神经网络(RNN)的时候出现如下错误:### module 'tensorflow.contrib.rnn' has no attribute 'core_rnn_cell'经检查是tf.contrib.rnn.core_rnn_cell.BasicLSTMCell(lstm_size) 此方法已被禁用,采用了新的方法:rnn.BasicLSTMCell(lstm_size) 使用此方...原创 2018-03-27 19:52:32 · 3392 阅读 · 0 评论 -
np.newaxis,增加维度
np.newaxis,增加维度In [1]: np.linspace(1, 10, 10)Out[1]: array([ 1., 2., 3., 4., 5., 6., 7., 8., 9., 10.])In [2]: np.linspace(1, 10, 10)[np.newaxis,:]Out[2]: array([[ 1., 2., 3., 4., 5., 6., 7., 8., 9., 1...原创 2018-04-23 16:29:10 · 535 阅读 · 0 评论 -
深度学习参考博客
http://www.cnblogs.com/hunttown/原创 2018-04-24 15:14:43 · 243 阅读 · 0 评论