├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── config.yml │ ├── enhancement-request.md │ └── project-request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── auto-comment-pr-raise.yml │ └── ci.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── computer-vision │ ├── bicep-reps-counting.md │ ├── black-and-white-image-colorizer.md │ ├── brightness-control.md │ ├── face-detection.md │ └── index.md ├── contribute.md ├── data-visualization │ ├── bangladesh-premier-league-analysis.md │ └── index.md ├── deep-learning │ ├── anamoly-detection.md │ ├── brain-tumor-detection-model.md │ ├── index.md │ └── music-genre-classification-model.md ├── generative-adversarial-networks │ └── index.md ├── index.md ├── large-language-models │ └── index.md ├── machine-learning │ ├── air-quality-prediction.md │ ├── autism-detection.md │ ├── bulldozer-price-prediction.md │ ├── cardiovascular-disease-prediction.md │ ├── crop-recommendation.md │ ├── health-insurance-cross-sell-prediction.md │ ├── heart-disease-detection-model.md │ ├── index.md │ ├── poker-hand-prediction.md │ ├── sleep-quality-prediction.md │ └── used-cars-price-prediction.md ├── natural-language-processing │ ├── chatbot-implementation.md │ ├── email-spam-detection.md │ ├── index.md │ ├── name-entity-recognition.md │ ├── next-word-pred.md │ ├── text-summarization.md │ └── twitter-sentiment-analysis.md └── project-readme-template.md └── mkdocs.yml /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/.github/ISSUE_TEMPLATE/enhancement-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/project-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/.github/ISSUE_TEMPLATE/project-request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/auto-comment-pr-raise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/.github/workflows/auto-comment-pr-raise.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/README.md -------------------------------------------------------------------------------- /docs/computer-vision/bicep-reps-counting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/computer-vision/bicep-reps-counting.md -------------------------------------------------------------------------------- /docs/computer-vision/black-and-white-image-colorizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/computer-vision/black-and-white-image-colorizer.md -------------------------------------------------------------------------------- /docs/computer-vision/brightness-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/computer-vision/brightness-control.md -------------------------------------------------------------------------------- /docs/computer-vision/face-detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/computer-vision/face-detection.md -------------------------------------------------------------------------------- /docs/computer-vision/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/computer-vision/index.md -------------------------------------------------------------------------------- /docs/contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/contribute.md -------------------------------------------------------------------------------- /docs/data-visualization/bangladesh-premier-league-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/data-visualization/bangladesh-premier-league-analysis.md -------------------------------------------------------------------------------- /docs/data-visualization/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/data-visualization/index.md -------------------------------------------------------------------------------- /docs/deep-learning/anamoly-detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/deep-learning/anamoly-detection.md -------------------------------------------------------------------------------- /docs/deep-learning/brain-tumor-detection-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/deep-learning/brain-tumor-detection-model.md -------------------------------------------------------------------------------- /docs/deep-learning/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/deep-learning/index.md -------------------------------------------------------------------------------- /docs/deep-learning/music-genre-classification-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/deep-learning/music-genre-classification-model.md -------------------------------------------------------------------------------- /docs/generative-adversarial-networks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/generative-adversarial-networks/index.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/large-language-models/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/large-language-models/index.md -------------------------------------------------------------------------------- /docs/machine-learning/air-quality-prediction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/machine-learning/air-quality-prediction.md -------------------------------------------------------------------------------- /docs/machine-learning/autism-detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/machine-learning/autism-detection.md -------------------------------------------------------------------------------- /docs/machine-learning/bulldozer-price-prediction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/machine-learning/bulldozer-price-prediction.md -------------------------------------------------------------------------------- /docs/machine-learning/cardiovascular-disease-prediction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/machine-learning/cardiovascular-disease-prediction.md -------------------------------------------------------------------------------- /docs/machine-learning/crop-recommendation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/machine-learning/crop-recommendation.md -------------------------------------------------------------------------------- /docs/machine-learning/health-insurance-cross-sell-prediction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/machine-learning/health-insurance-cross-sell-prediction.md -------------------------------------------------------------------------------- /docs/machine-learning/heart-disease-detection-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/machine-learning/heart-disease-detection-model.md -------------------------------------------------------------------------------- /docs/machine-learning/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/machine-learning/index.md -------------------------------------------------------------------------------- /docs/machine-learning/poker-hand-prediction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/machine-learning/poker-hand-prediction.md -------------------------------------------------------------------------------- /docs/machine-learning/sleep-quality-prediction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/machine-learning/sleep-quality-prediction.md -------------------------------------------------------------------------------- /docs/machine-learning/used-cars-price-prediction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/machine-learning/used-cars-price-prediction.md -------------------------------------------------------------------------------- /docs/natural-language-processing/chatbot-implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/natural-language-processing/chatbot-implementation.md -------------------------------------------------------------------------------- /docs/natural-language-processing/email-spam-detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/natural-language-processing/email-spam-detection.md -------------------------------------------------------------------------------- /docs/natural-language-processing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/natural-language-processing/index.md -------------------------------------------------------------------------------- /docs/natural-language-processing/name-entity-recognition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/natural-language-processing/name-entity-recognition.md -------------------------------------------------------------------------------- /docs/natural-language-processing/next-word-pred.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/natural-language-processing/next-word-pred.md -------------------------------------------------------------------------------- /docs/natural-language-processing/text-summarization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/natural-language-processing/text-summarization.md -------------------------------------------------------------------------------- /docs/natural-language-processing/twitter-sentiment-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/natural-language-processing/twitter-sentiment-analysis.md -------------------------------------------------------------------------------- /docs/project-readme-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/docs/project-readme-template.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-A2Z/AI-Code/HEAD/mkdocs.yml --------------------------------------------------------------------------------