├── .gitignore ├── README.md ├── c++.docx ├── linux.docx ├── python.docx ├── 交易.docx └── 理论.docx /.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | # -------------------------------------------------------------------------------------------------------------------- # 3 | !*.py 4 | !*.yaml 5 | !README.md 6 | !.gitignore 7 | _.py 8 | # -------------------------------------------------------------------------------------------------------------------- # 9 | !*.docx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## 学习笔记 2 | >学习笔记。包含python环境、python基础库、深度学习相关库、深度学习相关理论、其他常用知识 3 | >定期更新 4 | ### 其他 5 | >github链接:https://github.com/TWK2022/notebook 6 | >邮箱:1024565378@qq.com -------------------------------------------------------------------------------- /c++.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TWK2022/notebook/d3888b4fd5aca00b79cbda6a6817f3a8a32acf16/c++.docx -------------------------------------------------------------------------------- /linux.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TWK2022/notebook/d3888b4fd5aca00b79cbda6a6817f3a8a32acf16/linux.docx -------------------------------------------------------------------------------- /python.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TWK2022/notebook/d3888b4fd5aca00b79cbda6a6817f3a8a32acf16/python.docx -------------------------------------------------------------------------------- /交易.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TWK2022/notebook/d3888b4fd5aca00b79cbda6a6817f3a8a32acf16/交易.docx -------------------------------------------------------------------------------- /理论.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TWK2022/notebook/d3888b4fd5aca00b79cbda6a6817f3a8a32acf16/理论.docx --------------------------------------------------------------------------------