上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 72 下一页
摘要: 最新版目前只能通过编译安装。折腾了半天终于搞定: 需要使用apt-get install先把各种 dependencies 安装好。 编译JIT需要安装sudo apt-get install llvm-3.9-dev'。编译过程中会搜寻llvm-conf... 阅读全文
posted @ 2019-03-05 20:34 2021年的顺遂平安君 阅读(80) 评论(0) 推荐(0)
摘要: sudo dpkg -i cuda-repo-ubuntu1604-9-0-local_9.0.176-1_amd64.debsudo apt-key add /var/cuda-repo-/7fa2af80.pubsudo apt-get updates... 阅读全文
posted @ 2019-01-14 17:51 2021年的顺遂平安君 阅读(74) 评论(0) 推荐(0)
摘要: 16.04的版本也适用于18.04 可以同时安装有多个版本, 目录下会有多个版本,和一个 叫 具体使用哪个版本取决于 。 阅读全文
posted @ 2019-01-14 17:51 2021年的顺遂平安君 阅读(364) 评论(0) 推荐(0)
摘要: 今天终于弄明白,TensorFlow和Keras中LSTM神经网络的输入输出层到底应该怎么设置和连接了。写个备忘。 https://machinelearningmastery.com/how to develop lstm models for time series forecasting/ S 阅读全文
posted @ 2018-11-16 18:10 2021年的顺遂平安君 阅读(5751) 评论(0) 推荐(0)
摘要: 今天终于弄明白,TensorFlow和Keras中LSTM神经网络的输入输出层到底应该怎么设置和连接了。写个备忘。 https://machinelearningmastery.com/how-to-develop-lstm-models-for-tim... 阅读全文
posted @ 2018-11-16 18:10 2021年的顺遂平安君 阅读(96) 评论(0) 推荐(0)
摘要: num_units = [200, 100]cells = [tf.nn.rnn_cell.GRUCell(num_units=n) for n in num_units]stacked_rnn_cell = tf.nn.rnn_cell.MultiRNN... 阅读全文
posted @ 2018-11-15 21:11 2021年的顺遂平安君 阅读(64) 评论(0) 推荐(0)
摘要: 最后一个 的`num_units n_neurons`相同 阅读全文
posted @ 2018-11-15 21:11 2021年的顺遂平安君 阅读(1469) 评论(0) 推荐(0)
摘要: ``` w = tf.Variable(, name=) ``` 阅读全文
posted @ 2018-10-31 05:13 2021年的顺遂平安君 阅读(288) 评论(0) 推荐(0)
摘要: w = tf.Variable(, name=) 阅读全文
posted @ 2018-10-31 05:13 2021年的顺遂平安君 阅读(35) 评论(0) 推荐(0)
摘要: 注意多维数组 MAE 的计算方法 * >>> from sklearn.metrics import mean_absolute_error>>> y_true = [3, -0.5, 2, 7]>>> y_pred = [2.5, 0.0, 2, 8]... 阅读全文
posted @ 2018-10-30 18:01 2021年的顺遂平安君 阅读(92) 评论(0) 推荐(0)
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 72 下一页