studies icon indicating copy to clipboard operation
studies copied to clipboard

Notes of Develop/NLP/DeepLearning/Algorithms/LeetCodes

studies-gitbook

Algorithms

LeetCode、剑指Offer、牛客、...

TODO
  • [ ] 给 algorithms/notes 添加 README,TOC 树形目录;
  • [ ] 尝试 GitHub 提供的 projects 栏:参考 Projects · zhaoyan346a/Blog
  • [ ] 重构 README 生成的 Algorithms 和 Codes 两个类,并迁移至 tools 目录。
  • [ ] 优化主页 README 下的 Algorithms 链接,调整为层级目录的形式(类似 Notes)
Done
  • [x] 【2022.01.18】优化 algorithm 笔记模板的 tag 部分,使用 json 代替目前的正则抽取。
  • [x] 【2022.01.17】自动生成目录结构(books、papers 等)
  • [x] 【2021.11.12】优化 auto-readme,使用上一次的 commit info,而不是默认 'Auto-README'
    • 参考:git commit -m "$(git log -"$(git rev-list origin/master..master --count)" --pretty=%B | cat)"
    • 说明:使用 origin/master 到 master 之间所有的 commit 信息作为这次的 message;
  • [x] 【2021.11.11】bert 支持加载指定层 -> _test_load_appointed_layers()
  • [x] 【2021.11.08】把 __test.py 文件自动加入文档测试(放弃)
    • 有些测试比较耗时,不需要全部加入自动测试;
    • __test.py 针对的是存在相对引用的模块,如果这些模块有改动,会即时测试,所以也不需要自动测试
  • [x] 【2021.11.03pytorch-lightning 代码阅读