├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── blogs.md ├── books.md ├── courses.md ├── events.md ├── meetups.md ├── ml-curriculum.md └── scripts ├── pull_R_packages.py └── requirements.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: Correia-jpv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Creative Commons Legal Code 2 | 3 | No need 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Correia-jpv/fucking-awesome-machine-learning/HEAD/README.md -------------------------------------------------------------------------------- /blogs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Correia-jpv/fucking-awesome-machine-learning/HEAD/blogs.md -------------------------------------------------------------------------------- /books.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Correia-jpv/fucking-awesome-machine-learning/HEAD/books.md -------------------------------------------------------------------------------- /courses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Correia-jpv/fucking-awesome-machine-learning/HEAD/courses.md -------------------------------------------------------------------------------- /events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Correia-jpv/fucking-awesome-machine-learning/HEAD/events.md -------------------------------------------------------------------------------- /meetups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Correia-jpv/fucking-awesome-machine-learning/HEAD/meetups.md -------------------------------------------------------------------------------- /ml-curriculum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Correia-jpv/fucking-awesome-machine-learning/HEAD/ml-curriculum.md -------------------------------------------------------------------------------- /scripts/pull_R_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Correia-jpv/fucking-awesome-machine-learning/HEAD/scripts/pull_R_packages.py -------------------------------------------------------------------------------- /scripts/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Correia-jpv/fucking-awesome-machine-learning/HEAD/scripts/requirements.txt --------------------------------------------------------------------------------