forked from faridrashidi/kaggle-solutions
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
Β·186 lines (177 loc) Β· 10.4 KB
/
index.html
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
---
layout: default
---
<a href="https://github.com/faridrashidi/kaggle-solutions">
<img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub">
</a>
<div class="container">
<div class="row">
<div style="margin-left:auto; margin-right:auto; float:center; width:75%;">
<section id="content" class="body">
<div class="entry-content" style="font-size:14px; font-family:'Roboto', sans-serif; line-height:1.7">
<h2 style="text-align:center;">The Most Comprehensive List of Kaggle Solutions and Ideas</h2>
<p>
This is a list of almost all available solutions and ideas shared by top performers in the past Kaggle competitions. This list gets updated as soon as a new competition finishes. If you find a solution besides the ones listed here, I would encourage you to contribute to this repo by making a pull request. The symbols used in this list are described <a href='{{ site.baseurl }}/resources/symbols.html'>here</a>.
</p>
<p>
If you found it interesting, you may give a star or make a fork
</p>
<!-- <p>
<a class="github-button" href="https://github.com/faridrashidi/kaggle-solutions" data-show-count="true" aria-label="Star faridrashidi/kaggle-solutions on GitHub">Star</a>
<a class="github-button" href="https://github.com/faridrashidi/kaggle-solutions/fork" data-show-count="true" aria-label="Fork faridrashidi/kaggle-solutions on GitHub">Fork</a>
</p> -->
<p>
<iframe src="https://ghbtns.com/github-btn.html?user=faridrashidi&repo=kaggle-solutions&type=star&count=true" frameborder="0" scrolling="0" width="110px" height="30px"></iframe>
<iframe src="https://ghbtns.com/github-btn.html?user=faridrashidi&repo=kaggle-solutions&type=fork&count=true" frameborder="0" scrolling="0" width="110px" height="30px"></iframe>
</p>
<p>
Check out the following markdown pages about Top Kagglers Tips/Tricks and all Kernels of The week.
</p>
<ul>
<li><a href='{{ site.baseurl }}/resources/videos.html'>Top Kagglers Interviews and Lectures</a></li>
<li><a href='{{ site.baseurl }}/resources/kernels.html'>Kernels of The Week</a></li>
</ul>
</div>
</section>
</div>
</div>
</div>
<br/>
<div class="container">
<div id="search-demo-container">
<input type="text" id="myInput" onkeyup="myFunction()" placeholder="Type / to search title, description, year, ranking and ...">
</div>
</br>
<div class="row">
<div class="col-lg-12">
<section id="content" class="body">
<span class="published" style="float: right;">
<i class="far fa-calendar-alt" style="font-size:16px"></i><time datetime="2019-01-01"> <b>Last Updated:</b> {{site.last_updated}}</time>
</span>
<div class="entry-content">
<table id="myTable" class="table table-striped">
<thead>
<tr>
<th></th>
<th>Title & Description</th>
<th>Details</th>
<th>Solutions</th>
<th>Pins</th>
</tr>
</thead>
<tbody>
{% for item in site.data.competitions.competitions %}
<tr>
<td class="td-image">
<a style="border-bottom:none" href="{{ item.link }}">
<img class="img-competition" src="{{ item.image }}">
</a>
</td>
<td class="td-title">
<a href="{{ item.link }}"><b>{{ item.number }}. {{ item.title }}</b></a>
<br></br>
<p>{{ item.desc }}</p>
</td>
<td class="td-details">
<p>Prize: {{ item.prize }}</p>
<p>Team: {{ item.team }}</p>
<p>Kind: {{ item.kind }}</p>
<p>Metric: {{ item.metric }}</p>
<p>Year: {{ item.year }}</p>
</td>
<td class="td-solutions">
<ul style="list-style: none; padding-left: 0;">
{% if item.done == 'true' %}
{% for entry in item.solutions %}
{% if entry.rank == 'all solutions' %}
<li class="secondary"><a href="{{ entry.link }}"><i class="fas fa-circle" style="font-size:15px"></i> all solutions</a></li>
{% elsif entry.rank == '?' %}
<li class="secondary"><a href="{{ entry.link }}"><i class="fas fa-circle" style="font-size:15px"></i> ?th place</a></li>
{% else %}
{% assign var = entry.rank | plus: 0 %}
{% if var == 1 %}
{% if entry.kind == 'code' %}
<li class="secondary"><a href="{{ entry.link }}">{{ site.code_gold }} {{ entry.rank }}st place</a></li>
{% elsif entry.kind == 'description' %}
<li class="secondary"><a href="{{ entry.link }}">{{ site.description_gold }} {{ entry.rank }}st place</a></li>
{% else %}
<li class="secondary"><a href="{{ entry.link }}">{{ site.kernel_gold }} {{ entry.rank }}st place</a></li>
{% endif %}
{% elsif var == 2 %}
{% if entry.kind == 'code' %}
<li class="secondary"><a href="{{ entry.link }}">{{ site.code_silver }} {{ entry.rank }}nd place</a></li>
{% elsif entry.kind == 'description' %}
<li class="secondary"><a href="{{ entry.link }}">{{ site.description_silver }} {{ entry.rank }}nd place</a></li>
{% else %}
<li class="secondary"><a href="{{ entry.link }}">{{ site.kernel_silver }} {{ entry.rank }}nd place</a></li>
{% endif %}
{% elsif var == 3 or var == 23 or var == 33 or var == 43 or var == 53 or var == 63 %}
{% if entry.kind == 'code' %}
<li class="secondary"><a href="{{ entry.link }}">{{ site.code_bronze }} {{ entry.rank }}rd place</a></li>
{% elsif entry.kind == 'description' %}
<li class="secondary"><a href="{{ entry.link }}">{{ site.description_bronze }} {{ entry.rank }}rd place</a></li>
{% else %}
<li class="secondary"><a href="{{ entry.link }}">{{ site.kernel_bronze }} {{ entry.rank }}rd place</a></li>
{% endif %}
{% elsif var == 22 or var == 32 or var == 42 or var == 52 or var == 62 %}
{% if entry.kind == 'code' %}
<li class="secondary"><a href="{{ entry.link }}">{{ site.code_bronze }} {{ entry.rank }}nd place</a></li>
{% elsif entry.kind == 'description' %}
<li class="secondary"><a href="{{ entry.link }}">{{ site.description_bronze }} {{ entry.rank }}nd place</a></li>
{% else %}
<li class="secondary"><a href="{{ entry.link }}">{{ site.kernel_bronze }} {{ entry.rank }}nd place</a></li>
{% endif %}
{% elsif var == 21 or var == 31 or var == 41 or var == 51 or var == 61 %}
{% if entry.kind == 'code' %}
<li class="secondary"><a href="{{ entry.link }}">{{ site.code_bronze }} {{ entry.rank }}st place</a></li>
{% elsif entry.kind == 'description' %}
<li class="secondary"><a href="{{ entry.link }}">{{ site.description_bronze }} {{ entry.rank }}st place</a></li>
{% else %}
<li class="secondary"><a href="{{ entry.link }}">{{ site.kernel_bronze }} {{ entry.rank }}st place</a></li>
{% endif %}
{% else %}
{% if entry.kind == 'code' %}
<li class="secondary"><a href="{{ entry.link }}">{{ site.code_bronze }} {{ entry.rank }}th place</a></li>
{% elsif entry.kind == 'description' %}
<li class="secondary"><a href="{{ entry.link }}">{{ site.description_bronze }} {{ entry.rank }}th place</a></li>
{% else %}
<li class="secondary"><a href="{{ entry.link }}">{{ site.kernel_bronze }} {{ entry.rank }}th place</a></li>
{% endif %}
{% endif %}
{% endif %}
{% endfor %}
{% else %}
<li class="secondary"><i class="fas fa-info-circle" style="font-size:15px"></i> Not Available!</li>
{% endif %}
</ul>
</td>
<td class="td-pins">
{% if item.done == 'true' %}
<i class="far fa-check-circle" style="font-size:15px"></i>
{% elsif item.done == 'false' %}
<i class="far fa-circle" style="font-size:15px"></i>
{% endif %}
<br/>
{% if item.isHot == 'true' %}
<i class="fab fa-hotjar" style="font-size:15px"></i>
{% endif %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</section>
</div>
</div>
</div>
<script>
$(document).ready(function(){
$("#myInput").on("keyup", function() {
var value = $(this).val().toLowerCase();
$("#myTable tr").filter(function() {
$(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
});
});
});
</script>