- 博客(8)
- 收藏
- 关注
原创 vscode中jupyter notebook 代码出错不报错持续运行的bug解决方案
vscode中jupyter notebook 代码出错不报错持续运行的bug解决方案
2023-02-02 18:00:59
1323
4
原创 导入tensorflow报错:ImportError: DLL load failed: 找不到指定的模块
我这里的tensorflow是1.12:conda install cudatoolkit==9.0conda install cudnn测试一下import tensorflow as tfprint(tf.__version__)搞定
2021-12-24 18:29:31
1389
原创 caffe2_detectron_ops.dll“ or one of its dependencies 解决办法
错误提示缺乏运行库的去安装运行库即可该解决办法是在你运行库没问题的前提下的解决办法解决办法粗暴简单,直接删除报错文件 caffe2_detectron_ops.dll
2021-12-03 14:45:21
5291
4
原创 numpy-rnn 从公式推导到代码实现
注:本文主要扣反向传播这一块的公式,rnn原理、历史发展等等其他文章都讲的很清楚了前向传播公式nett=Uxt+Wht−1+bnet^t= Ux^t +Wh^{t-1} +bnett=Uxt+Wht−1+bht=tanh(nett)h^t = tanh(net^t)ht=tanh(nett)ot=Vht+co^t = Vh^t+cot=Vht+c代码net = np.dot(self.Wx, xt) + np.dot(self.Wh, h_prev) + self.Bhh = tanh(net
2021-11-22 16:09:52
934
原创 解决安装切换虚拟环境功能后的jupyter dead kernel 问题
解决安装切换虚拟环境功能后的jupyter dead kernel 问题问题1_ImportError:问题2_ModuleNotFoundError: :问题1_ImportError:首先在控制台,也就是jupyter的命令行窗口发现问题:ImportError: cannot import name 'generator_to_async_generator'解决方案:pip uninstall -y ipython prompt_toolkitpip install ipython p
2021-11-05 17:05:06
384
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人