DrivenData runs machine learning competitions to help non-profits, NGOs, governments, and other social impact organizations use data science in service of humanity. Part of DrivenData's mission is to enable data scientists and non-profits to learn from the work that is done in these competitions. To this end, the code submitted by winners for almost all DrivenData competitions are released under a permissive open source license for others to learn from, use, and adapt.
This repository makes it easy to find code prodvided by the winners of competitions hosted on DrivenData. Use the list below to browse to any particular competition's winning repository; or, you can clone this repository to get all of the code at once.
This repository includes each competition's winners repository using git's submodule functionality. Note that when any repo containing submodules is cloned, each submodule needs to be initialized else they remain empty.
To avoid explicitly initializing each submodule, use the --recursive
flag when cloning:
git clone --recursive https://github.com/drivendata/competition-winners.git
.
This will download the competition-winners
repository, as well as the contents of every submodule in the winners repository.
If you've already cloned this repository without the --recursive
flag and the submodules are empty, use the following command to download them:
git submodule update --init --recursive