competition-winners
The code for the prize winners in DrivenData competitions.
File Explorer
- .gitignore
- .gitmodules
- aiai-challenge
- americas-next-top-statistical-model
- box-plots-for-education
- clog-loss-alzheimers-research
- cloud-cover
- countable-care
- deep-chimpact-winners
- for-fun-competitions
- from-fog-nets-to-neural-nets
- goodnight-moon
- hakuna-madata
- hateful-memes
- image-similarity-challenge
- keeping-it-fresh
- kelp-wanted
- LICENSE
- magnet-geomagnetic-field
- mars-spectrometry
- mars-spectrometry-gcms
- n-plus-one-fish
- naive-bees-classifier
- nasa-airathon
- nasa-airport-config
- nasa-airport-pushback
- open-ai-caribbean
- open-cities-ai-challenge
- overhead-geopose-challenge
- pale-blue-dot
- pose-bowl-spacecraft-challenge
- pover-t-tests
- poverty-prediction-challenge
- power-laws-anomalies
- power-laws-cold-start
- power-laws-forecasting
- power-laws-optimization
- prepare-adrd
- pri-matrix-factorization
- random-walk-of-the-penguins
- README.md
- rinse-over-run
- senior-data-science
- snomed-ct-entity-linking
- snowcast-showdown
- stac-overflow
- the-biomassters
- tick-tick-bloom
- tissuenet-cervical-biopsies
- unsupervised-wisdom
- UPDATING.md
- video-similarity-challenge
- visiomel-melanoma
- water-supply-forecast-rodeo
- wheres-whale-do
- wind-dependent-variables
- youth-mental-health
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
git submodule
View Details ▼
git submodule
Inspect, update, and manage submodules.
git submodule
View existing submodules and the checked-out commit for each one:
git submodule update --init --recursive
Install a repository's submodules (listed in `.gitmodules`):
git submodule add {{repository_url}}
Add a Git repository as a submodule of the current one:
