├── 1st_Place ├── LICENSE ├── README.md ├── catboost_model.ipynb ├── compare_df.csv ├── compare_methods.ipynb ├── load_external_data.ipynb ├── main.py ├── reports │ └── DrivenData-Competition-Winner-Documentation.pdf ├── requirements.txt └── unet_model.ipynb ├── 2nd_Place ├── LICENSE ├── README.md ├── environment.yml ├── notebooks │ ├── EDA.ipynb │ └── check_prediction.ipynb ├── reports │ └── DrivenData-Competition-Winner-Documentation.pdf ├── requirements.txt └── src │ ├── data │ ├── load_pc_test_data.ipynb │ └── load_pc_train_data.ipynb │ └── models │ ├── main.py │ ├── predict.py │ └── train_model.ipynb ├── 3rd_Place ├── 01-ewl-stac.ipynb ├── LICENSE ├── README.md ├── flood_model.py ├── main.py ├── reports │ └── DrivenData-Competition-Winner-Documentation.pdf └── requirements.txt ├── LICENSE └── README.md /1st_Place/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/1st_Place/LICENSE -------------------------------------------------------------------------------- /1st_Place/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/1st_Place/README.md -------------------------------------------------------------------------------- /1st_Place/catboost_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/1st_Place/catboost_model.ipynb -------------------------------------------------------------------------------- /1st_Place/compare_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/1st_Place/compare_df.csv -------------------------------------------------------------------------------- /1st_Place/compare_methods.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/1st_Place/compare_methods.ipynb -------------------------------------------------------------------------------- /1st_Place/load_external_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/1st_Place/load_external_data.ipynb -------------------------------------------------------------------------------- /1st_Place/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/1st_Place/main.py -------------------------------------------------------------------------------- /1st_Place/reports/DrivenData-Competition-Winner-Documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/1st_Place/reports/DrivenData-Competition-Winner-Documentation.pdf -------------------------------------------------------------------------------- /1st_Place/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/1st_Place/requirements.txt -------------------------------------------------------------------------------- /1st_Place/unet_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/1st_Place/unet_model.ipynb -------------------------------------------------------------------------------- /2nd_Place/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/2nd_Place/LICENSE -------------------------------------------------------------------------------- /2nd_Place/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/2nd_Place/README.md -------------------------------------------------------------------------------- /2nd_Place/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/2nd_Place/environment.yml -------------------------------------------------------------------------------- /2nd_Place/notebooks/EDA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/2nd_Place/notebooks/EDA.ipynb -------------------------------------------------------------------------------- /2nd_Place/notebooks/check_prediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/2nd_Place/notebooks/check_prediction.ipynb -------------------------------------------------------------------------------- /2nd_Place/reports/DrivenData-Competition-Winner-Documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/2nd_Place/reports/DrivenData-Competition-Winner-Documentation.pdf -------------------------------------------------------------------------------- /2nd_Place/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/2nd_Place/requirements.txt -------------------------------------------------------------------------------- /2nd_Place/src/data/load_pc_test_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/2nd_Place/src/data/load_pc_test_data.ipynb -------------------------------------------------------------------------------- /2nd_Place/src/data/load_pc_train_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/2nd_Place/src/data/load_pc_train_data.ipynb -------------------------------------------------------------------------------- /2nd_Place/src/models/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/2nd_Place/src/models/main.py -------------------------------------------------------------------------------- /2nd_Place/src/models/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/2nd_Place/src/models/predict.py -------------------------------------------------------------------------------- /2nd_Place/src/models/train_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/2nd_Place/src/models/train_model.ipynb -------------------------------------------------------------------------------- /3rd_Place/01-ewl-stac.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/3rd_Place/01-ewl-stac.ipynb -------------------------------------------------------------------------------- /3rd_Place/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/3rd_Place/LICENSE -------------------------------------------------------------------------------- /3rd_Place/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/3rd_Place/README.md -------------------------------------------------------------------------------- /3rd_Place/flood_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/3rd_Place/flood_model.py -------------------------------------------------------------------------------- /3rd_Place/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/3rd_Place/main.py -------------------------------------------------------------------------------- /3rd_Place/reports/DrivenData-Competition-Winner-Documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/3rd_Place/reports/DrivenData-Competition-Winner-Documentation.pdf -------------------------------------------------------------------------------- /3rd_Place/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/3rd_Place/requirements.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/stac-overflow/HEAD/README.md --------------------------------------------------------------------------------