-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (78 loc) · 3.44 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
<!DOCTYPE html>
<html>
<head>
<title>Datasets for Vision, ML, DL</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<!-- og tags -->
<meta property="og:url" content="http://www.kfrankc.me/datasets/index.html" />
<meta property="og:title" content="Datasets for Vision, ML, DL" />
<meta property="og:description" content="A collection of datasets for training/research" />
<meta property="og:image" content="http://www.kfrankc.me/datasets/img/data.jpg" />
<meta property="og:image:width" content="322" />
<meta property="og:image:height" content="325" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="A collection of datasets for training/research">
<meta name="author" content="Frank Chen">
<!--css-->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/animate.css">
<!--js-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/handlebars.min-latest.js"></script>
<script src="js/dataloader.js"></script>
<script src="js/wow.min.js"></script>
<!-- responsive icons -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="/manifest.json">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<script> new WOW().init(); </script>
<header>
<nav>
<ul>
<li><a href="http://kfrankc.me"> Home</a></li>
</ul>
</nav>
<h2><a href="index.html">Datasets for Vision, Machine Learning, Deep Learning</a></h2>
</header>
<div class="wow fadeIn">
<section>
<div class="fill">
<img data-src="img/data.jpg">
</div>
<p>Welcome! Below you can find a list (constantly updated) of datasets used for computer vision, machine learning, deep learning training/research.</p>
<p><b>Two paper links accompany each dataset</b>: first link is the paper for the dataset; second link is a related paper that uses the dataset. Lastly, the number corresponding with each paper shows the <b>citations made for that paper</b>. Special thanks to <b><a href="http://shukla.io" >Nishant Shukla</a></b> for suggesting this project.</p>
</section>
</div>
<section>
<div id="content">
<script id="card-template" type="text/x-handlebars-template">
{{#each apidata}}
<div class="wow fadeIn">
<div class="card" id="card-{{@index}}">
<h3 class="card-title" style="align:left"><b><a href="{{website}}" >{{name}}</a></b><span style="float: right;">{{usage}}</span></h3>
<h5>{{cite1}} <a href="{{paper1}}" >{{title1}}</a></h5>
<h5>{{cite2}} <a href="{{paper2}}" >{{title2}}</a></h5>
</div>
</div>
<br>
{{/each}}
</script>
</div>
</section>
<script src="js/imageloader.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-84600758-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>