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
|
<!doctype html>
<html>
<head>
<title>MegaPixels</title>
<meta charset="utf-8" />
<meta name="author" content="Adam Harvey" />
<meta name="description" content="VGG Face 2 Dataset" />
<meta name="referrer" content="no-referrer" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<link rel='stylesheet' href='/assets/css/fonts.css' />
<link rel='stylesheet' href='/assets/css/css.css' />
<link rel='stylesheet' href='/assets/css/leaflet.css' />
<link rel='stylesheet' href='/assets/css/applets.css' />
</head>
<body>
<header>
<a class='slogan' href="/">
<div class='logo'></div>
<div class='site_name'>MegaPixels</div>
<div class='splash'>Brainwash Dataset</div>
</a>
<div class='links'>
<a href="/datasets/">Datasets</a>
<a href="/about/">About</a>
</div>
</header>
<div class="content content-">
<section><h2>VGG Face 2</h2>
</section><section><div class='right-sidebar'><div class='meta'>
<div class='gray'>Published</div>
<div>2015</div>
</div><div class='meta'>
<div class='gray'>Images</div>
<div>11,917 </div>
</div><div class='meta'>
<div class='gray'>Purpose</div>
<div>Head detection</div>
</div><div class='meta'>
<div class='gray'>Created by</div>
<div>Stanford University (US), Max Planck Institute for Informatics (DE)</div>
</div><div class='meta'>
<div class='gray'>Funded by</div>
<div>Max Planck Center for Visual Computing and Communication</div>
</div><div class='meta'>
<div class='gray'>Download Size</div>
<div>4.1 GB</div>
</div><div class='meta'>
<div class='gray'>Website</div>
<div><a href='https://purl.stanford.edu/sx925dc9385' target='_blank' rel='nofollow noopener'>stanford.edu</a></div>
</div><p>[ page under development ]</p>
<p>{% include 'dashboard.html' %}</p>
<h3>(ignore) research notes</h3>
<ul>
<li>The VGG Face 2 dataset includes approximately 1,331 actresses, 139 presidents, 16 wives, 3 husbands, 2 snooker player, and 1 guru</li>
<li>The original VGGF2 name list has been updated with the results returned from Google Knowledge</li>
<li>Names with a similarity score greater than 0.75 where automatically updated. Scores computed using <code>import difflib; seq = difflib.SequenceMatcher(a=a.lower(), b=b.lower()); score = seq.ratio()</code></li>
<li>The 97 names with a score of 0.75 or lower were manually reviewed and includes name changes validating using Wikipedia.org results for names such as "Bruce Jenner" to "Caitlyn Jenner", spousal last-name changes, and discretionary changes to improve search results such as combining nicknames with full name when appropriate, for example changing "Aleksandar Petrović" to "Aleksandar 'Aco' Petrović" and minor changes such as "Mohammad Ali" to "Muhammad Ali"</li>
<li>The 'Description' text was automatically added when the Knowledge Graph score was greater than 250</li>
</ul>
</div><h2>TODO</h2>
<ul>
<li>create name list, and populate with Knowledge graph information like LFW</li>
<li>make list of interesting number stats, by the numbers</li>
<li>make list of interesting important facts</li>
<li>write intro abstract</li>
<li>write analysis of usage</li>
<li>find examples, citations, and screenshots of useage</li>
<li>find list of companies using it for table</li>
<li>create montages of the dataset, like LFW</li>
<li>create right to removal information</li>
</ul>
</section>
</div>
<footer>
<div>
<a href="/">MegaPixels.cc</a>
<a href="/datasets/">Datasets</a>
<a href="/about/">About</a>
<a href="/about/press/">Press</a>
<a href="/about/legal/">Legal and Privacy</a>
</div>
<div>
MegaPixels ©2017-19 Adam R. Harvey /
<a href="https://ahprojects.com">ahprojects.com</a>
</div>
</footer>
</body>
<script src="/assets/js/dist/index.js"></script>
</html>
|