├── .github ├── ISSUE_TEMPLATE.md └── workflows │ └── ciff.yml ├── .gitignore ├── README.md ├── _config.yml ├── images ├── Screenshot 2020-04-10 13.15.39.png ├── Screenshot 2020-04-10 13.16.33.png ├── Screenshot 2020-04-10 13.47.16.png └── image ├── index.html └── requirements.txt /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuyentran1401/machine-learning-articles/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ciff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuyentran1401/machine-learning-articles/HEAD/.github/workflows/ciff.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | __pycache__ 3 | .vscode 4 | .idea 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuyentran1401/machine-learning-articles/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuyentran1401/machine-learning-articles/HEAD/_config.yml -------------------------------------------------------------------------------- /images/Screenshot 2020-04-10 13.15.39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuyentran1401/machine-learning-articles/HEAD/images/Screenshot 2020-04-10 13.15.39.png -------------------------------------------------------------------------------- /images/Screenshot 2020-04-10 13.16.33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuyentran1401/machine-learning-articles/HEAD/images/Screenshot 2020-04-10 13.16.33.png -------------------------------------------------------------------------------- /images/Screenshot 2020-04-10 13.47.16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuyentran1401/machine-learning-articles/HEAD/images/Screenshot 2020-04-10 13.47.16.png -------------------------------------------------------------------------------- /images/image: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuyentran1401/machine-learning-articles/HEAD/index.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.22.0 --------------------------------------------------------------------------------