├── .gitattributes ├── .github ├── How_to_PR_in_Github_Desktop.md ├── ISSUE_TEMPLATE │ └── add-dictionary-table.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── ci.yml ├── .gitignore ├── Dictionary ├── README.md ├── activation_function.md ├── backbone.md ├── computer_vision.md └── natural_language_processing.md ├── LICENSE ├── README.md ├── ReadPapers.pdf ├── docs ├── AI-Labs.md ├── AI.md ├── Dictionary.md ├── Guideline.png ├── Math.md ├── Official-Paper.md ├── Python.md ├── Question.md ├── index.md └── math.png └── mkdocs.yml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpprhtn/AI-Learning-Guide/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/How_to_PR_in_Github_Desktop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpprhtn/AI-Learning-Guide/HEAD/.github/How_to_PR_in_Github_Desktop.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/add-dictionary-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpprhtn/AI-Learning-Guide/HEAD/.github/ISSUE_TEMPLATE/add-dictionary-table.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpprhtn/AI-Learning-Guide/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpprhtn/AI-Learning-Guide/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | Contributor/ 3 | .DS_Store 4 | empty/ 5 | -------------------------------------------------------------------------------- /Dictionary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpprhtn/AI-Learning-Guide/HEAD/Dictionary/README.md -------------------------------------------------------------------------------- /Dictionary/activation_function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpprhtn/AI-Learning-Guide/HEAD/Dictionary/activation_function.md -------------------------------------------------------------------------------- /Dictionary/backbone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpprhtn/AI-Learning-Guide/HEAD/Dictionary/backbone.md -------------------------------------------------------------------------------- /Dictionary/computer_vision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpprhtn/AI-Learning-Guide/HEAD/Dictionary/computer_vision.md -------------------------------------------------------------------------------- /Dictionary/natural_language_processing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpprhtn/AI-Learning-Guide/HEAD/Dictionary/natural_language_processing.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpprhtn/AI-Learning-Guide/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpprhtn/AI-Learning-Guide/HEAD/README.md -------------------------------------------------------------------------------- /ReadPapers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpprhtn/AI-Learning-Guide/HEAD/ReadPapers.pdf -------------------------------------------------------------------------------- /docs/AI-Labs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpprhtn/AI-Learning-Guide/HEAD/docs/AI-Labs.md -------------------------------------------------------------------------------- /docs/AI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpprhtn/AI-Learning-Guide/HEAD/docs/AI.md -------------------------------------------------------------------------------- /docs/Dictionary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpprhtn/AI-Learning-Guide/HEAD/docs/Dictionary.md -------------------------------------------------------------------------------- /docs/Guideline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpprhtn/AI-Learning-Guide/HEAD/docs/Guideline.png -------------------------------------------------------------------------------- /docs/Math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpprhtn/AI-Learning-Guide/HEAD/docs/Math.md -------------------------------------------------------------------------------- /docs/Official-Paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpprhtn/AI-Learning-Guide/HEAD/docs/Official-Paper.md -------------------------------------------------------------------------------- /docs/Python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpprhtn/AI-Learning-Guide/HEAD/docs/Python.md -------------------------------------------------------------------------------- /docs/Question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpprhtn/AI-Learning-Guide/HEAD/docs/Question.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpprhtn/AI-Learning-Guide/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/math.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpprhtn/AI-Learning-Guide/HEAD/docs/math.png -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpprhtn/AI-Learning-Guide/HEAD/mkdocs.yml --------------------------------------------------------------------------------