上一页 1 ··· 134 135 136 137 138 139 140 141 142 ··· 342 下一页
摘要: 旧版本中: from keras.layers import merge merge6 = merge([layer1,layer2], mode = 'concat', concat_axis = 3)新版本中: from keras.layers.merge import concatenate 阅读全文
posted @ 2021-02-26 23:32 emanlee 阅读(347) 评论(0) 推荐(0)
摘要: 打开CMD 命令行窗口,输入 nvcc --version nvcc --versionnvcc: NVIDIA (R) Cuda compiler driverCopyright (c) 2005-2020 NVIDIA CorporationBuilt on Wed_Jul_22_19:09:3 阅读全文
posted @ 2021-02-26 23:11 emanlee 阅读(1991) 评论(0) 推荐(0)
摘要: 2021-02-26 22:54:13.146272: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1406] Created TensorFlow device (/job:localhost/replica:0/task:0/device 阅读全文
posted @ 2021-02-26 22:58 emanlee 阅读(3454) 评论(0) 推荐(0)
摘要: conda install keras 阅读全文
posted @ 2021-02-26 22:09 emanlee 阅读(130) 评论(0) 推荐(0)
摘要: Error: Flash Download failed - Could not load file '..\OBJ\USART.axf' 解决方案: 1 重新覆盖安装keil 2 程序编译存在错误导致 同时开多个KEIL,只有其中一个KEIL可以使用J-LINK,ST-LINK。 阅读全文
posted @ 2021-02-26 15:41 emanlee 阅读(14699) 评论(0) 推荐(0)
摘要: https://shrill-pond-3e81.hunsh.workers.dev/ 阅读全文
posted @ 2021-02-23 23:05 emanlee 阅读(356) 评论(0) 推荐(0)
摘要: 安装nbextensions在 Anaconda Prompt 中输入如下指令:pip install jupyter_contrib_nbextensionsjupyter contrib nbextension install --user 安装nbextensions_configurator 阅读全文
posted @ 2021-02-22 19:42 emanlee 阅读(786) 评论(0) 推荐(0)
摘要: 在pandas版本0.20.0及其以后版本中,ix已经不被推荐使用,建议采用iloc和loc实现ix。 predictions_ARIMA_log = pd.Series(ts_log.ix[0],index=ts_log.index)predictions_ARIMA_log = predicti 阅读全文
posted @ 2021-02-22 10:05 emanlee 阅读(2184) 评论(0) 推荐(0)
摘要: change: moving_avg = pd.rolling_mean(ts_log,12) to: moving_avg = ts_log.rolling(12).mean() 阅读全文
posted @ 2021-02-22 09:48 emanlee 阅读(1027) 评论(0) 推荐(0)
摘要: model.fit(trainX, trainY, nb_epoch=200, batch_size=2, verbose=2) It's just epochs now. nb_epoch was deprecated years ago. 把 nb_epoch 修改 为 epochs 阅读全文
posted @ 2021-02-22 09:25 emanlee 阅读(4779) 评论(0) 推荐(0)
上一页 1 ··· 134 135 136 137 138 139 140 141 142 ··· 342 下一页