# deep_learning **Repository Path**: woldier/deep_learning ## Basic Information - **Project Name**: deep_learning - **Description**: No description available - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-02-24 - **Last Updated**: 2022-03-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 这是一个深度学习的学习项目 ## 1. 一些文档的查看 ### Matplotlib的使用 参考 https://www.runoob.com/matplotlib/matplotlib-tutorial.html ### seaborn的使用 https://seaborn.apachecn.org/#/README ### hiddenlayer的使用 pytorch_graph.ipynb:此 notebook 展示了如何为一些流行的 PyTorch 模型生成图。 地址:https://github.com/waleedka/hiddenlayer/blob/master/demos/pytorch_graph.ipynb pytorch_train.ipynb:展示了如何在 PyTorch 中追踪和可视化训练度量。 地址:https://github.com/waleedka/hiddenlayer/blob/master/demos/pytorch_train.ipynb history_canvas.py:在没有 GUI 的情况下使用 HiddenLayer 的示例。 地址:https://github.com/waleedka/hiddenlayer/blob/master/demos/history_canvas.py ### 卷积网络 卷积网络 关于空洞卷积的部分 可以参考 https://zhuanlan.zhihu.com/p/113285797 ### nn.Dropout 防止过拟合 https://blog.csdn.net/leviopku/article/details/120786990 ### RNN神经网络 ![img.png](image/img.png) ![img.png](image/img2.png) ![img.png](image/img3.png) ![img.png](image/img4.png) ## 2. 一些bug的解决 ### cuda内存溢出问题解决 https://ptorch.com/news/160.html 或者 ```pycon try: output = model(input) except RuntimeError as exception: if "out of memory" in str(exception): print("WARNING: out of memory") if hasattr(torch.cuda, 'empty_cache'): torch.cuda.empty_cache() else: raise exception ``` ### 绘图问题 graphviz.backend.execute.ExecutableNotFound: failed to execute 'dot', make sure the Graphviz executables are on your systems' PATH https://blog.csdn.net/HNUCSEE_LJK/article/details/86772806 安装之后记得重启pycharm