-
Notifications
You must be signed in to change notification settings - Fork 392
/
competitions.yaml
4148 lines (4148 loc) · 158 KB
/
competitions.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
- competitionDescription: Can you classify cloud structures from satellites?
competitionId: 13333
competitionName: null
competitionTitle: Understanding Clouds from Satellite Images
competitionUrl: /c/understanding_cloud_organization
coverImageUrl: null
deadline: '2019-11-18T23:59:00Z'
evaluationMetric: Dice coefficient
hostSegment: Research
organizationAvatarUrl: null
organizationName: Max Planck Institute for Meteorology
organizationUrl:
rewardQuantity: 10000.0
rewardTypeName: USD
solutions:
- label: 1st place solution
url: https://www.kaggle.com/c/understanding_cloud_organization/discussion/118080
tags: resnet34, efficientnet-b1, resnext10132x8dwsl, resnext10132x16dwsl
- label: 3rd place solution
url: https://www.kaggle.com/c/understanding_cloud_organization/discussion/117949
tags: resnet34-FPN, soft DICE loss, BCE loss
- label: 4th place solution
url: https://www.kaggle.com/c/understanding_cloud_organization/discussion/118016
tags: Resnet34, SE-ResNext-50, EfficientNet-B4
- label: 5th place solution
url: https://www.kaggle.com/c/understanding_cloud_organization/discussion/117987
tags: efficientnet-b1, resnet50, efficientnet-b3, fpn, unet
- label: 6th place solution
url: https://www.kaggle.com/c/understanding_cloud_organization/discussion/118017
tags: efficientnet-b4, unet, efficientnet-b4, fpn
- label: 7th place solution
url: https://www.kaggle.com/c/understanding_cloud_organization/discussion/117974
tags: efficientnet e5/7-FPN,se101-FPN, se101-linket, Dice loss
repositories:
- label: 2nd place code
url: https://github.com/darraghdog/rsna
- label: 3rd place code
url: https://github.com/okotaku/kaggle_rsna2019_3rd_solution
- label: 5th place code
url: https://github.com/ngxbac/Kaggle-RSNA
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/13333/logos/thumb76_76.png?t=2019-06-07-19-19-14
types:
- image data
- Atmospheric sciences
- competitionDescription: Identify acute intracranial hemorrhage and its subtypes
competitionId: 13451
competitionName: null
competitionTitle: RSNA Intracranial Hemorrhage Detection
competitionUrl: /c/rsna-intracranial-hemorrhage-detection
coverImageUrl: null
deadline: '2019-11-13T23:59:00Z'
evaluationMetric: weighted multi-label logarithmic loss
hostSegment: Featured
organizationAvatarUrl: null
organizationName: Radiological Society of North America
organizationUrl:
rewardQuantity: 25000.0
rewardTypeName: USD
solutions:
- label: 2nd place solution
url: https://www.kaggle.com/c/rsna-intracranial-hemorrhage-detection/discussion/117228
tags: Resnext101, LSTM, Bi-BLSTM
- label: 3rd place solution
url: https://www.kaggle.com/c/rsna-intracranial-hemorrhage-detection/discussion/117223
tags: SeResNeXt50, SeResNeXt101
- label: 5th place solution
url: https://www.kaggle.com/c/rsna-intracranial-hemorrhage-detection/discussion/117232
tags: Resnet, Densenet
- label: 6th place solution
url: https://www.kaggle.com/c/rsna-intracranial-hemorrhage-detection/discussion/117301
tags: xception, inception, EfficientnetB0, Resnet50, ResInc
- label: 7th place solution
url: https://www.kaggle.com/c/rsna-intracranial-hemorrhage-detection/discussion/117293
tags: efficientnetb5, efficientnetb6, inceptionresnetv2, inception_v4, senet154, seresnext50, seresnext101
- label: 9th place solution
url: https://www.kaggle.com/c/rsna-intracranial-hemorrhage-detection/discussion/117211
tags: resnet
repositories:
- label: 2nd place code
url: https://github.com/darraghdog/rsna
- label: 3rd place code
url: https://github.com/okotaku/kaggle_rsna2019_3rd_solution
- label: 5th place code
url: https://github.com/ngxbac/Kaggle-RSNA
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/13451/logos/thumb76_76.png?t=2019-08-26-19-58-36
types:
- image data
- competitionDescription: Can you advance the state of the art in 3D object detection?
competitionId: 15768
competitionName: null
competitionTitle: Lyft 3D Object Detection for Autonomous Vehicles
competitionUrl: /c/3d-object-detection-for-autonomous-vehicles
coverImageUrl: null
deadline: '2019-11-12T23:59:00Z'
evaluationMetric: intersection over union (IoU)
hostSegment: Featured
organizationAvatarUrl: null
organizationName: Lyft
organizationUrl:
rewardQuantity: 25000.0
rewardTypeName: USD
solutions:
- label: 4th place solution
url: https://www.kaggle.com/c/3d-object-detection-for-autonomous-vehicles/discussion/117269
tags: VoxelNet, PointPillars, PyTorch
- label: 20th place solution
url: https://www.kaggle.com/c/3d-object-detection-for-autonomous-vehicles/discussion/117560
tags: VoxelNet, PillarFeatureNet
- label: 27th place solution
url: https://www.kaggle.com/c/3d-object-detection-for-autonomous-vehicles/discussion/117809
tags: PointPillars, second.pytorch, VoxelNet
repositories:
- label: 20th place solution
url: https://github.com/pyaf/second.pytorch
- label: Second.pytorch original repository
url: https://github.com/traveller59/second.pytorch
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/15768/logos/thumb76_76.png?t=2019-08-27-22-43-26
types:
- image data
- Object detection
- competitionDescription: Can you detect and classify defects in steel?
competitionId: 14241
competitionName: null
competitionTitle: Severstal Steel Defect Detection
competitionUrl: /c/severstal-steel-defect-detection
coverImageUrl: null
deadline: '2019-10-17T23:59:00Z'
evaluationMetric: Dice coefficient
hostSegment: Featured
organizationAvatarUrl: null
organizationName: Severstal
organizationUrl:
rewardQuantity: 120000.0
rewardTypeName: USD
solutions:
- label: 1st place solution
url: https://www.kaggle.com/c/severstal-steel-defect-detection/discussion/114254
tags: efficientnet-b1, resnet34, efficientnet-b3, Unet, FPN
- label: 4th place solution
url: https://www.kaggle.com/c/severstal-steel-defect-detection/discussion/114716
tags: resnet34
- label: 7th place solution
url: https://www.kaggle.com/c/severstal-steel-defect-detection/discussion/114215
tags: AdamW, efficientnet-b4, efficientnet-b7, UNet
- label: 8th place solution
url: https://www.kaggle.com/c/severstal-steel-defect-detection/discussion/114696
tags: FPN, Seresnext50, UNet, Seresnext50, Resnet34
- label: 10th place solution
url: https://www.kaggle.com/c/severstal-steel-defect-detection/discussion/114465
tags: Unet, FPN, PSPNet
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/14241/logos/thumb76_76.png?t=2019-06-17-15-52-14
types:
- image data
- competitionDescription: Opening the door to a thousand years of Japanese culture
competitionId: 13578
competitionName: null
competitionTitle: Kuzushiji Recognition
competitionUrl: /c/kuzushiji-recognition
coverImageUrl: null
deadline: '2019-10-14T23:59:00Z'
evaluationMetric: F1 score
hostSegment: Playground
organizationAvatarUrl: null
organizationName: ROIS-DS Center for Open Data in the Humanities
organizationUrl:
rewardQuantity: 15000.0
rewardTypeName: USD
solutions:
- label: 1st place solution
url: https://www.kaggle.com/c/kuzushiji-recognition/discussion/112788
tags: Cascade R-CNN, HRNet w32, HRNet w48
- label: 2nd place solution
url: https://www.kaggle.com/c/kuzushiji-recognition/discussion/112712
tags: resnet152, pretrained on ImageNet, resnext101_32x8d_wsl, Faster-RCNN
- label: 3rd place solution
url: https://www.kaggle.com/c/kuzushiji-recognition/discussion/113049
tags: Faster R-CNN, ResNet101, EfficientNet, SE-ResNeXt101, ResNet152, LightGBM
- label: 7th place solution
url: https://www.kaggle.com/c/kuzushiji-recognition/discussion/112899
tags: CenterNet,
- label: 9th place solution
url: https://www.kaggle.com/c/kuzushiji-recognition/discussion/112807
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/13578/logos/thumb76_76.png?t=2019-04-24-22-48-08
repositories:
- label: 1st place solution
url: https://github.com/tascj/kaggle-kuzushiji-recognition
- label: 2nd place solution
url: https://github.com/lopuhin/kaggle-kuzushiji-2019
- label: 3rd place solution
url: https://github.com/knjcode/kaggle-kuzushiji-recognition-2019
types:
- history
- image data
- multiclass classification
- competitionDescription: Temporal localization of topics within video
competitionId: 12716
competitionName: null
competitionTitle: The 3rd YouTube-8M Video Understanding Challenge
competitionUrl: /c/youtube8m-2019
coverImageUrl: null
deadline: '2019-10-11T23:59:00Z'
evaluationMetric: Mean Average Precision @ K (MAP@K)
hostSegment: Research
organizationAvatarUrl: null
organizationName: Google Research
organizationUrl:
rewardQuantity: 25000.0
rewardTypeName: USD
solutions:
- label: 1st place solution
url: https://www.kaggle.com/c/youtube8m-2019/discussion/112869
tags: LSTM, NetVLAD/LF
- label: 2nd place solution
url: https://www.kaggle.com/c/youtube8m-2019/discussion/113663
tags: NeXtVLAD, LightNetVLAD, GatedDBOF, SoftDBOF, NetFV, GRU, ResNetLike
- label: 3rd place solution
url: https://www.kaggle.com/c/youtube8m-2019/discussion/112929
tags: MixNeXtVLAD
- label: 6th place solution
url: https://www.kaggle.com/c/youtube8m-2019/discussion/112403
tags: NeXtVLAD
- label: 7th place solution
url: https://www.kaggle.com/c/youtube8m-2019/discussion/112349
tags: NeXtVLAD ,context-gated DBoF, mixture-of-experts
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/12716/logos/thumb76_76.png?t=2019-04-29-17-48-06
types:
- video data
- object detection
- competitionDescription: Can you detect fraud from customer transactions?
competitionId: 14242
competitionName: null
competitionTitle: IEEE-CIS Fraud Detection
competitionUrl: /c/ieee-fraud-detection
coverImageUrl: null
deadline: '2019-10-03T23:59:00Z'
evaluationMetric: area under the ROC curve (AUC)
hostSegment: Research
organizationAvatarUrl: null
organizationName: IEEE Computational Intelligence Society
organizationUrl:
rewardQuantity: 25000.0
rewardTypeName: USD
solutions:
- label: 1st place solution - part 1
url: https://www.kaggle.com/c/ieee-fraud-detection/discussion/111284
- label: 1st place solution - part 2
url: https://www.kaggle.com/c/ieee-fraud-detection/discussion/111308
- label: 2nd place solution - cpmp view
url: https://www.kaggle.com/c/ieee-fraud-detection/discussion/111321
- label: 2nd place solution - sggpls view
url: https://www.kaggle.com/c/ieee-fraud-detection/discussion/111554
- label: 5th place solution
url: https://www.kaggle.com/c/ieee-fraud-detection/discussion/111735
- label: 6th place solution
url: https://www.kaggle.com/c/ieee-fraud-detection/discussion/111247
- label: 9th place solution
url: https://www.kaggle.com/c/ieee-fraud-detection/discussion/111234
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/14242/logos/thumb76_76.png?t=2019-07-11-17-50-36
types:
- Tabular
- competitionDescription: Detect objects in varied and complex images
competitionId: 14315
competitionName: null
competitionTitle: Open Images 2019 - Object Detection
competitionUrl: /c/open-images-2019-object-detection
coverImageUrl: null
deadline: '2019-10-01T23:59:00Z'
evaluationMetric: mean Average Precision (mAP)
hostSegment: Research
organizationAvatarUrl: null
organizationName: Google Research
organizationUrl:
rewardQuantity: 25000.0
rewardTypeName: USD
solutions:
- label: 6th place solution
url: https://www.kaggle.com/c/open-images-2019-object-detection/discussion/110953
tags: ResNeXt 152 / 101
- label: 10th place solution
url: https://www.kaggle.com/c/open-images-2019-object-detection/discussion/111266
tags: resnext101, TTA, rcnn+resnext101
- label: 32nd place solution
url: https://www.kaggle.com/c/open-images-2019-object-detection/discussion/111022
tags: FRCNN resnet50, Inception resnet v2, YOLO v3
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/14315/logos/thumb76_76.png?t=2019-04-24-05-15-38
types:
- Computer vision
- Object detection
- competitionDescription: Detect pairs of objects in particular relationships
competitionId: 14316
competitionName: null
competitionTitle: Open Images 2019 - Visual Relationship
competitionUrl: /c/open-images-2019-visual-relationship
coverImageUrl: null
deadline: '2019-10-01T23:59:00Z'
evaluationMetric: weighted mean of (1) mean Average Precision (mAP) on relationships detection, (2) Recall@N (where N=50), and (3) mean Average Precision on phrase detection
hostSegment: Research
organizationAvatarUrl: null
organizationName: Google Research
organizationUrl:
rewardQuantity: 25000.0
rewardTypeName: USD
solutions:
- label: 13th place solution
url: https://www.kaggle.com/c/open-images-2019-visual-relationship/discussion/110935
tags: mmdet
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/14316/logos/thumb76_76.png?t=2019-04-24-05-15-47
types:
- Computer vision
- competitionDescription: Outline segmentation masks of objects in images
competitionId: 15043
competitionName: null
competitionTitle: Open Images 2019 - Instance Segmentation
competitionUrl: /c/open-images-2019-instance-segmentation
coverImageUrl: null
deadline: '2019-10-01T23:59:00Z'
evaluationMetric: mean Average Precision (mAP)
hostSegment: Research
organizationAvatarUrl: null
organizationName: Google Research
organizationUrl:
rewardQuantity: 25000.0
rewardTypeName: USD
solutions:
- label: 7th place solution
url: https://www.kaggle.com/c/open-images-2019-instance-segmentation/discussion/110983
tags: mmdetection, backbone x101,
- label: 11th place solution
url: https://www.kaggle.com/c/open-images-2019-instance-segmentation/discussion/111351
tags: ResNeXt152, ResNet152-C4
- label: 20th place solution
url: https://www.kaggle.com/c/open-images-2019-instance-segmentation/discussion/110908
tags: maskrcnn-benchmark
repositories:
- label: 7th place solution
url: https://github.com/boliu61/open-images-2019-instance-segmentation
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/15043/logos/thumb76_76.png?t=2019-06-18-19-30-08
types:
- Computer vision
- Instance Segmentation
- competitionDescription: CellSignal Disentangling biological signal from experimental noise in cellular images
competitionId: 14420
competitionName: null
competitionTitle: Recursion Cellular Image Classification
competitionUrl: /c/recursion-cellular-image-classification
coverImageUrl: null
deadline: '2019-09-26T23:59:00Z'
evaluationMetric: Multiclass Accuracy
hostSegment: Research
organizationAvatarUrl: null
organizationName: Recursion Pharmaceuticals
organizationUrl:
rewardQuantity: 13000.0
rewardTypeName: USD
solutions:
- label: 4th place solution
url: https://www.kaggle.com/c/recursion-cellular-image-classification/discussion/110337
tags: seresnext50, efficientnet, psuedo label
- label: 5th place solution
url: https://www.kaggle.com/c/recursion-cellular-image-classification/discussion/110362
tags: DenseNet201, ResNeXt101_32x8d, HRNet-W18, HRNet-W30
- label: 6th place solution
url: https://www.kaggle.com/c/recursion-cellular-image-classification/discussion/110391
tags: efficientnet-b0
- label: 7th place solution
url: https://www.kaggle.com/c/recursion-cellular-image-classification/discussion/110335
tags: Resnet50
- label: 9th place solution
url: https://www.kaggle.com/c/recursion-cellular-image-classification/discussion/110366
tags: CosFace loss, Unsupervised Domain Adaptation by Backpropagation, seresnet50, senet154, xception, inceptionresnetv2, densenet161, densenet201
- label: 10th place solution
url: https://www.kaggle.com/c/recursion-cellular-image-classification/discussion/110375
tags: Pytorch, Center Loss for embeddings, SeNet154, SeResnext50, SeResnext101, Polynet, EfficientNet-b6, ResNeXt101-wsl
- label: 11th place solution
url: https://www.kaggle.com/c/recursion-cellular-image-classification/discussion/110394
tags: Polyak averaging, EfficientNets B0 and B5, Cross Entropy
repositories:
- label: 4th place solution
url: https://github.com/ngxbac/Kaggle-Recursion-Cellular
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/14420/logos/thumb76_76.png?t=2019-06-26-02-51-45
types:
- Research
- Biology
- Classification
- Image data
- Computer vision
- competitionDescription: Help understand customer loyalty
competitionId: 10445
competitionName: null
competitionTitle: Elo Merchant Category Recommendation
competitionUrl: /c/elo-merchant-category-recommendation
coverImageUrl: null
deadline: '2019-02-26T23:59:00Z'
evaluationMetric: Root mean square error (RMSE)
hostSegment: Featured
organizationAvatarUrl: null
organizationName: Elo
organizationUrl:
rewardQuantity: 50000.0
rewardTypeName: USD
solutions:
- label: 5th place solution
url: https://www.kaggle.com/c/elo-merchant-category-recommendation/discussion/82314
- label: 7th place solution
url: https://www.kaggle.com/c/elo-merchant-category-recommendation/discussion/82055
tags: word2vec features, Lightgbm, neural network
- label: 10th place solution
url: https://www.kaggle.com/c/elo-merchant-category-recommendation/discussion/82093
- label: 11th place solution
url: https://www.kaggle.com/c/elo-merchant-category-recommendation/discussion/82127
- label: 16th place solution
url: https://www.kaggle.com/c/elo-merchant-category-recommendation/discussion/82166
- label: 18th place solution
url: https://www.kaggle.com/c/elo-merchant-category-recommendation/discussion/82107
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/10445/logos/thumb76_76.png?t=2018-10-24-17-14-05
types:
- Regression
- competitionDescription: Detect diabetic retinopathy to stop blindness before it's too late
competitionId: 14774
competitionName: null
competitionTitle: APTOS 2019 Blindness Detection
competitionUrl: /c/aptos2019-blindness-detection
coverImageUrl: null
deadline: '2019-09-07T23:59:00Z'
evaluationMetric: quadratic weighted kappa
hostSegment: Featured
organizationAvatarUrl: null
organizationName: Asia Pacific Tele-Ophthalmology Society (APTOS)
organizationUrl:
rewardQuantity: 50000.0
rewardTypeName: USD
solutions:
- label: 1st place solution
url: https://www.kaggle.com/c/aptos2019-blindness-detection/discussion/108065
tags: inception_resnet_v2, inception_v4, seresnext50, seresnext101
- label: 2nd place solution
url: https://www.kaggle.com/c/aptos2019-blindness-detection/discussion/108122
tags: efficientnet b5
- label: 4th place solution
url: https://www.kaggle.com/c/aptos2019-blindness-detection/discussion/107926
tags: efficient-net b3 b4 b5
- label: 7th place solution
url: https://www.kaggle.com/c/aptos2019-blindness-detection/discussion/107987
tags: EfficientNet B2 B3 B4 B5 B6 B7
- label: 8th place solution
url: https://www.kaggle.com/c/aptos2019-blindness-detection/discussion/107960
tags: efficientnet b0 b1 b2 b3, Torch
- label: 10th place solution
url: https://www.kaggle.com/c/aptos2019-blindness-detection/discussion/108058
tags: SeResNext50, SeResNext101, InceptionV4
- label: 11th place solution
url: https://www.kaggle.com/c/aptos2019-blindness-detection/discussion/108030
tags: EfficientNet-B4 B5
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/14774/logos/thumb76_76.png?t=2019-06-24-18-15-40
types:
- Computer vision
- Classification
- competitionDescription: Automatically recognize sounds and apply tags of varying natures
competitionId: 10700
competitionName: null
competitionTitle: Freesound Audio Tagging 2019
competitionUrl: /c/freesound-audio-tagging-2019
coverImageUrl: null
deadline: '2019-06-11T23:59:00Z'
evaluationMetric: label-weighted label-ranking average precision (lwlrap)
hostSegment: Research
organizationAvatarUrl: null
organizationName: Freesound
organizationUrl:
rewardQuantity: 5000.0
rewardTypeName: USD
solutions:
- label: 1st place solution
url: https://www.kaggle.com/c/freesound-audio-tagging-2019/discussion/95924
- label: 2nd place solution
url: https://www.kaggle.com/c/freesound-audio-tagging-2019/discussion/97815
- label: 3rd place solution
url: https://www.kaggle.com/c/freesound-audio-tagging-2019/discussion/97926
- label: 4th place solution
url: https://www.kaggle.com/c/freesound-audio-tagging-2019/discussion/96440
- label: 6th place solution
url: https://www.kaggle.com/c/freesound-audio-tagging-2019/discussion/96440
- label: 7th place solution
url: https://www.kaggle.com/c/freesound-audio-tagging-2019/discussion/97812
- label: 8th place solution
url: https://www.kaggle.com/c/freesound-audio-tagging-2019/discussion/96446
- label: 9th place solution (by Iafoss)
url: https://www.kaggle.com/c/freesound-audio-tagging-2019/discussion/95409
- label: 9th place solution (by Theo Viel)
url: https://www.kaggle.com/c/freesound-audio-tagging-2019/discussion/97736
- label: 11th place solution
url: https://www.kaggle.com/c/freesound-audio-tagging-2019/discussion/95344
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/10700/logos/thumb76_76.png?t=2019-03-08-16-57-45
types:
- Audio
- Signal
- competitionDescription: Identify Pneumothorax disease in chest x-rays
competitionId: 14652
competitionName: null
competitionTitle: SIIM-ACR Pneumothorax Segmentation
competitionUrl: /c/siim-acr-pneumothorax-segmentation
coverImageUrl: null
deadline: '2019-09-04T23:59:00Z'
evaluationMetric: Dice coefficient
hostSegment: Featured
organizationAvatarUrl: null
organizationName: Society for Imaging Informatics in Medicine (SIIM)
organizationUrl:
rewardQuantity: 30000.0
rewardTypeName: USD
solutions:
- label: 5th place solution
url: https://www.kaggle.com/c/siim-acr-pneumothorax-segmentation/discussion/107603
tags: Network= Unet with Aspp, Backbone= se50 & se101
- label: 6th place solution
url: https://www.kaggle.com/c/siim-acr-pneumothorax-segmentation/discussion/107743
tags: EncodingNet (ResNets, 512 and 1024 size), UNet (EfficientNet4, se-resnext50, SENet154 with 512, 640 and 1024 sizes)
- label: 8th place solution
url: https://www.kaggle.com/c/siim-acr-pneumothorax-segmentation/discussion/107522
tags: Architecture= DeepLabV3+, Backbone= ResNet50/101 and ResNeXt50/101
- label: 10th place solution
url: https://www.kaggle.com/c/siim-acr-pneumothorax-segmentation/discussion/107687
tags: classification models= se_resnext101, senet154, segmentation models= Unets dpn98, se_resnet101, se_densenet121
- label: 11th place solution
url: https://www.kaggle.com/c/siim-acr-pneumothorax-segmentation/discussion/107518
- label: 12th place solution
url: https://www.kaggle.com/c/siim-acr-pneumothorax-segmentation/discussion/107757
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/14652/logos/thumb76_76.png?t=2019-05-15-19-37-10
types:
- Computer vision
- competitionDescription: Can you identify who will make a transaction?
competitionId: 10385
competitionName: null
competitionTitle: Santander Customer Transaction Prediction
competitionUrl: /c/santander-customer-transaction-prediction
coverImageUrl: null
deadline: '2019-04-10T23:59:00Z'
evaluationMetric: area under the ROC curve
hostSegment: Featured
organizationAvatarUrl: null
organizationName: Banco Santander
organizationUrl:
rewardQuantity: 65000.0
rewardTypeName: USD
solutions:
- label: 1st place solution
url: https://www.kaggle.com/c/santander-customer-transaction-prediction/discussion/89003
- label: 2nd place solution
url: https://www.kaggle.com/c/santander-customer-transaction-prediction/discussion/88939
- label: 3rd place solution
url: https://www.kaggle.com/c/santander-customer-transaction-prediction/discussion/88902
- label: 4th place solution
url: https://www.kaggle.com/c/santander-customer-transaction-prediction/discussion/88891
- label: 5th place solution
url: https://www.kaggle.com/c/santander-customer-transaction-prediction/discussion/88897
- label: 7th place solution
url: https://www.kaggle.com/c/santander-customer-transaction-prediction/discussion/89023
- label: 8th place solution
url: https://www.kaggle.com/c/santander-customer-transaction-prediction/discussion/88886
- label: 9th place solution
url: https://www.kaggle.com/c/santander-customer-transaction-prediction/discussion/88913
- label: 10th place solution
url: https://www.kaggle.com/c/santander-customer-transaction-prediction/discussion/88997
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/10385/logos/thumb76_76.png?t=2019-02-15-16-53-52
types:
- Bank data
- Tabular
- competitionDescription: Experiment with creating puppy pics
competitionId: 15062
competitionName: null
competitionTitle: Generative Dog Images
competitionUrl: /c/generative-dog-images
coverImageUrl: null
deadline: '2019-08-14T23:59:00Z'
evaluationMetric: Memorization-informed Fréchet Inception Distance
hostSegment: Featured
organizationAvatarUrl: null
organizationName: Kaggle
organizationUrl:
rewardQuantity: 10000.0
rewardTypeName: USD
solutions:
- label: 1st place solution
url: https://www.kaggle.com/c/generative-dog-images/discussion/106324
- label: 2nd place solution
url: https://www.kaggle.com/c/generative-dog-images/discussion/104211
- label: 3rd place solution
url: https://www.kaggle.com/c/generative-dog-images/discussion/106514
- label: 4th place solution
url: https://www.kaggle.com/c/generative-dog-images/discussion/104281
- label: 5th place solution
url: https://www.kaggle.com/c/generative-dog-images/discussion/104287
- label: 6th place solution
url: https://www.kaggle.com/c/generative-dog-images/discussion/104215
- label: 8th place solution
url: https://www.kaggle.com/c/generative-dog-images/discussion/106452
- label: 10th place solution
url: https://www.kaggle.com/johannl/sn-dcgan?scriptVersionId=18544882
- label: 11th place solution
url: https://www.kaggle.com/leonshangguan/dcgan-data-cleaning-sub-v1?scriptVersionId=18470145
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/15062/logos/thumb76_76.png?t=2019-06-20-21-52-51
types:
- GAN
- competitionDescription: A synchronous Kernels-only competition
competitionId: 14239
competitionName: null
competitionTitle: Instant Gratification
competitionUrl: /c/instant-gratification
coverImageUrl: null
deadline: '2019-06-20T23:59:00Z'
evaluationMetric: area under the ROC curve
hostSegment: Featured
organizationAvatarUrl: null
organizationName: Kaggle
organizationUrl:
rewardQuantity: 5000.0
rewardTypeName: USD
solutions:
- label: 1st place solution
url: https://www.kaggle.com/c/instant-gratification/discussion/96549
- label: 2nd place solution
url: https://www.kaggle.com/qiaoshiji/asdfghjkl?scriptVersionId=16011704
- label: 3rd place solution
url: https://www.kaggle.com/c/instant-gratification/discussion/96504
- label: 4th place solution
url: https://www.kaggle.com/rsakata/gmm-with-target-perfect-pred-random-shuffle
- label: 5th place solution
url: https://www.kaggle.com/c/instant-gratification/discussion/96510
- label: 6th place solution
url: https://www.kaggle.com/c/instant-gratification/discussion/96496
- label: 7th place solution
url: https://www.kaggle.com/c/instant-gratification/discussion/96506
- label: 8th place solution
url: https://www.kaggle.com/c/instant-gratification/discussion/96568
- label: 10th place solution
url: https://www.kaggle.com/c/instant-gratification/discussion/96556
- label: 13th place solution
url: https://www.kaggle.com/c/instant-gratification/discussion/96531
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/14239/logos/thumb76_76.png?t=2019-04-23-02-08-49
types:
- Tabular
- competitionDescription: Predicting Molecular Properties
competitionId: 14313
competitionName: null
competitionTitle: Predicting Molecular Properties
competitionUrl: /c/champs-scalar-coupling
coverImageUrl: null
deadline: '2019-08-28T23:59:00Z'
evaluationMetric: Log of the Mean Absolute Error
hostSegment: Featured
organizationAvatarUrl: null
organizationName: CHAMPS
organizationUrl:
rewardQuantity: 30000.0
rewardTypeName: USD
solutions:
- label: 1st place solution
url: https://www.kaggle.com/c/champs-scalar-coupling/discussion/106575
tags: soft graph transformer
- label: 2nd place solution
url: https://www.kaggle.com/c/champs-scalar-coupling/discussion/106468
tags: Pointnet architecture, Atomic Transformer, No Graph Neural Networks
- label: 3rd place solution
url: https://www.kaggle.com/c/champs-scalar-coupling/discussion/106572
tags: BERT
- label: 4th place solution
url: https://www.kaggle.com/c/champs-scalar-coupling/discussion/106534
tags: graph attention network, gated residual connections, Stochastic Weight Averaging
- label: 6th place solution
url: https://www.kaggle.com/c/champs-scalar-coupling/discussion/106407
tags: custom GNN architecture, MPNN model, multi-head attention layers
- label: 7th place solution
url: https://www.kaggle.com/c/champs-scalar-coupling/discussion/106421
tags: Graph NN
- label: 8th place solution
url: https://www.kaggle.com/c/champs-scalar-coupling/discussion/106347
tags: MPNN, GAT, Crystal GNN, SchNet, MegNet, 3DGNN
- label: 10th place solution
url: https://www.kaggle.com/c/champs-scalar-coupling/discussion/106271
tags: SchNet
- label: 12th place solution
url: https://www.kaggle.com/c/champs-scalar-coupling/discussion/106275
tags: PyTorch, CORMORANT
- label: 13th place solution
url: https://www.kaggle.com/c/champs-scalar-coupling/discussion/106377
tags: SchNet, CFConv
- label: 14th place solution
url: https://www.kaggle.com/c/champs-scalar-coupling/discussion/106298
tags: keras, GCN
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/14313/logos/thumb76_76.png?t=2019-05-20-20-29-23
types:
- Tabular
- Chemistry
- competitionDescription: Jigsaw Unintended Bias in Toxicity Classification
competitionId: 12500
competitionName: null
competitionTitle: Jigsaw Unintended Bias in Toxicity Classification
competitionUrl: /c/jigsaw-unintended-bias-in-toxicity-classification
coverImageUrl: null
deadline: '2019-06-26T23:59:00Z'
evaluationMetric: Overall AUC
hostSegment: Featured
organizationAvatarUrl: null
organizationName: Jigsaw
organizationUrl:
rewardQuantity: 65000.0
rewardTypeName: USD
solutions:
- label: 1st place solution
url: https://www.kaggle.com/c/jigsaw-unintended-bias-in-toxicity-classification/discussion/103280
- label: 4th place solution
url: https://www.kaggle.com/c/jigsaw-unintended-bias-in-toxicity-classification/discussion/101927
- label: 5th place solution
url: https://www.kaggle.com/c/jigsaw-unintended-bias-in-toxicity-classification/discussion/100718
- label: 7th place solution
url: https://www.kaggle.com/c/jigsaw-unintended-bias-in-toxicity-classification/discussion/100611
- label: 8th place solution
url: https://www.kaggle.com/c/jigsaw-unintended-bias-in-toxicity-classification/discussion/100961
- label: 9th place solution
url: https://www.kaggle.com/c/jigsaw-unintended-bias-in-toxicity-classification/discussion/100530
- label: 10th place solution
url: https://www.kaggle.com/c/jigsaw-unintended-bias-in-toxicity-classification/discussion/101630
- label: 11th place solution
url: https://www.kaggle.com/c/jigsaw-unintended-bias-in-toxicity-classification/discussion/100799
- label: 14th place solution
url: https://www.kaggle.com/c/jigsaw-unintended-bias-in-toxicity-classification/discussion/100821
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/12500/logos/thumb76_76.png?t=2019-03-13-21-51-14
types:
- Natural Language Processing (NLP)
- Fairness
- competitionDescription: Can you improve lung cancer detection?
competitionId: 6004
competitionTitle: Data Science Bowl 2017
competitionUrl: /c/data-science-bowl-2017
deadline: '2017-04-12T23:59:00Z'
evaluationMetric: Multi-class logarithmic loss (logloss)
hostSegment: featured
interviews:
- label: 2nd place winner
url: http://juliandewit.github.io/kaggle-ndsb2017/
- label: 9th place winner
url: https://eliasvansteenkiste.github.io/machine%20learning/lung-cancer-pred/
isInClass: false
isLimited: false
isPrivate: false
organizationName: null
organizationUrl: null
repositories:
- label: 1st place solution
url: https://github.com/lfz/DSB2017
- label: 2nd place solution
url: https://github.com/juliandewit/kaggle_ndsb2017
rewardDisplay: $1,000,000
rewardQuantity: 1000000
rewardTypeName: USD
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/6004/logos/thumb76_76.png
totalKernels: 0
totalTeams: 1972
types:
- Image processing / Vision
- Classification
userHasEntered: false
- competitionDescription: Can you make buying life insurance easier?
competitionId: 4699
competitionTitle: Prudential Life Insurance Assessment
competitionUrl: /c/prudential-life-insurance-assessment
deadline: '2016-02-15T23:59:00Z'
hostSegment: featured
interviews:
- label: 2nd place winner
url: http://blog.kaggle.com/2016/03/14/prudential-life-insurance-assessment-winners-interview-2nd-place-bogdan-zhurakovskyi/
isInClass: false
isLimited: false
isPrivate: false
organizationName: null
organizationUrl: null
rewardDisplay: $30,000
rewardQuantity: 30000
rewardTypeName: USD
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/4699/logos/thumb76_76.png
totalKernels: 371
totalTeams: 2619
userHasEntered: false
- competitionDescription: Is your model smarter than an 8th grader?
competitionId: 4571
competitionTitle: The Allen AI Science Challenge
competitionUrl: /c/the-allen-ai-science-challenge
deadline: '2016-02-13T23:59:00Z'
hostSegment: featured
interviews:
- label: 3rd place winner
url: http://blog.kaggle.com/2016/04/09/the-allen-ai-science-challenge-winners-interview-3rd-place-alejandro-mosquera/
isInClass: false
isLimited: false
isPrivate: false
organizationName: Allen Institute for Artificial Intelligence
organizationUrl: allenai
repositories:
- label: 8th place solution
url: https://github.com/5vision/kaggle_allen
rewardDisplay: $80,000
rewardQuantity: 80000
rewardTypeName: USD
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/4571/logos/thumb76_76.png
totalKernels: 0
totalTeams: 170
userHasEntered: false
- competitionDescription: Which customers will purchase a quoted insurance plan?
competitionId: 4657
competitionTitle: Homesite Quote Conversion
competitionUrl: /c/homesite-quote-conversion
deadline: '2016-02-08T23:59:00Z'
hostSegment: featured
interviews:
- label: 1st place winner
url: http://blog.kaggle.com/2016/04/08/homesite-quote-conversion-winners-write-up-1st-place-kazanova-faron-clobber/
- label: 2nd place winner
url: http://blog.kaggle.com/2016/05/02/homesite-quote-conversion-winners-interview-2nd-place-team-frenchies-nicolas-florian-pierre/
- label: 3rd place winner
url: http://blog.kaggle.com/2016/02/29/homesite-quote-conversion-winners-interview-3rd-place-team-new-model-army-cad-quy/
isInClass: false
isLimited: false
isPrivate: false
organizationName: null
organizationUrl: null
rewardDisplay: $20,000
rewardQuantity: 20000
rewardTypeName: USD
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/4657/logos/thumb76_76.png
totalKernels: 258
totalTeams: 1764
userHasEntered: false
- competitionDescription: Help prevent cervical cancer by identifying at-risk populations
competitionId: 4494
competitionTitle: Cervical Cancer Screening
competitionUrl: /c/cervical-cancer-screening
deadline: '2016-02-01T23:59:00Z'
hostSegment: featured
interviews:
- label: 1st place winner
url: http://blog.kaggle.com/2016/02/26/genentech-cervical-cancer-screening-winners-interview-1st-place-michael-giulio/
isInClass: false
isLimited: true
isPrivate: false
organizationName: null
organizationUrl: null
rewardDisplay: $100,000
rewardQuantity: 100000
rewardTypeName: USD
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/4494/logos/thumb76_76.png
totalKernels: 13
totalTeams: 40
userHasEntered: false
- competitionDescription: Join a multi-disciplinary team of research scientists
competitionId: 4504
competitionTitle: The Winton Stock Market Challenge
competitionUrl: /c/the-winton-stock-market-challenge
deadline: '2016-01-26T23:59:00Z'
hostSegment: featured
interviews:
- label: 3rd place winner
url: http://blog.kaggle.com/2016/02/12/winton-stock-market-challenge-winners-interview-3rd-place-mendrika-ramarlina/
isInClass: false
isLimited: false
isPrivate: false
organizationName: null
organizationUrl: null
rewardDisplay: $50,000
rewardQuantity: 50000
rewardTypeName: USD
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/4504/logos/thumb76_76.png
totalKernels: 0
totalTeams: 832
userHasEntered: false
- competitionDescription: "\u266B Alarm\_bells ring, are you listening?\_Santa's sleigh\
\ has gone\_missing\_\u266B"
competitionId: 4704
competitionTitle: Santa's Stolen Sleigh
competitionUrl: /c/santas-stolen-sleigh
deadline: '2016-01-08T23:59:00Z'
hostSegment: featured
interviews:
- label: 2nd place winner
url: http://blog.kaggle.com/2016/01/28/santas-stolen-sleigh-winners-interview-2nd-place-woshialex-weezy/
- label: 3rd place winner
url: http://blog.kaggle.com/2016/03/03/santas-stolen-sleigh-winners-interview-3rd-place-marcin-marek/
isInClass: false
isLimited: false
isPrivate: false
organizationName: null
organizationUrl: null
repositories:
- label: 2nd place solution
url: https://github.com/woshialex/SantaStolenSleigh
rewardDisplay: $20,000
rewardQuantity: 20000
rewardTypeName: USD
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/4704/logos/thumb76_76.png
totalKernels: 152
totalTeams: 1127
userHasEntered: false
- competitionDescription: Identify endangered right whales in aerial photographs
competitionId: 4521
competitionTitle: Right Whale Recognition
competitionUrl: /c/noaa-right-whale-recognition
deadline: '2016-01-07T23:59:00Z'
hostSegment: featured
interviews:
- label: 1st place winner
url: http://blog.kaggle.com/2016/01/29/noaa-right-whale-recognition-winners-interview-1st-place-deepsense-io/
- label: 2nd place winner
url: http://blog.kaggle.com/2016/02/04/noaa-right-whale-recognition-winners-interview-2nd-place-felix-lau/
isInClass: false
isLimited: false
isPrivate: false
organizationName: NOAA Fisheries
organizationUrl: https://www.nefsc.noaa.gov/psb/
repositories:
- label: 2nd place solution
url: https://github.com/felixlaumon/kaggle-right-whale
rewardDisplay: $10,000
rewardQuantity: 10000
rewardTypeName: USD
thumbnailImageUrl: https://kaggle2.blob.core.windows.net/competitions/kaggle/4521/logos/thumb76_76.png
totalKernels: 0
totalTeams: 364
userHasEntered: false
- competitionDescription: Forecast sales using store, promotion, and competitor data
competitionId: 4594
competitionTitle: Rossmann Store Sales
competitionUrl: /c/rossmann-store-sales
deadline: '2015-12-14T23:59:00Z'
hostSegment: featured
interviews:
- label: 1st place winner
url: http://blog.kaggle.com/2015/12/21/rossmann-store-sales-winners-interview-1st-place-gert/
- label: 2nd place winner
url: http://blog.kaggle.com/2016/02/03/rossmann-store-sales-winners-interview-2nd-place-nima-shahbazi/
- label: 3rd place winner
url: http://blog.kaggle.com/2016/01/22/rossmann-store-sales-winners-interview-3rd-place-cheng-gui/
isInClass: false
isLimited: false
isPrivate: false
organizationName: null
organizationUrl: null
repositories:
- label: 3rd place solution
url: https://github.com/entron/entity-embedding-rossmann
rewardDisplay: $35,000
rewardQuantity: 35000
rewardTypeName: USD
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/4594/logos/thumb76_76.png
totalKernels: 466
totalTeams: 3303
userHasEntered: false
- competitionDescription: Predict rental prices for properties across Western Australia
competitionId: 4523
competitionTitle: 'Western Australia Rental Prices '
competitionUrl: /c/deloitte-western-australia-rental-prices
deadline: '2015-11-30T23:59:00Z'
hostSegment: featured
isInClass: false
isLimited: true
isPrivate: false
organizationName: null
organizationUrl: null
rewardDisplay: $100,000
rewardQuantity: 100000
rewardTypeName: USD
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/4523/logos/thumb76_76.png
totalKernels: 0
totalTeams: 59
userHasEntered: false
- competitionDescription: 'Determine whether to send a direct mail piece to a customer '
competitionId: 4487
competitionTitle: Springleaf Marketing Response
competitionUrl: /c/springleaf-marketing-response
deadline: '2015-10-19T23:59:00Z'
hostSegment: featured
isInClass: false
isLimited: false
isPrivate: false
organizationName: null
organizationUrl: null
rewardDisplay: $100,000
rewardQuantity: 100000
rewardTypeName: USD
thumbnailImageUrl: https://storage.googleapis.com/kaggle-competitions/kaggle/4487/logos/thumb76_76.png
totalKernels: 334
totalTeams: 2226
userHasEntered: false
- competitionDescription: Predict which web pages served by StumbleUpon are sponsored
competitionId: 4493
competitionTitle: 'Truly Native? '
competitionUrl: /c/dato-native
deadline: '2015-10-14T23:59:00Z'
hostSegment: featured
interviews:
- label: 1st place winner
url: http://blog.kaggle.com/2015/12/03/dato-winners-interview-1st-place-mad-professors/