blob: 3456eac84449963488101786b9809174dec3957c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{% extends 'layout.html' %}
{% block content %}
{{ content }}
<section class='wide dataset-intro'>
<p>
We have prepared detailed case studies of some of the more noteworthy datasets, including tools to help you learn what is contained in these datasets, and even whether your own face has been used to train these algorithms.
</p>
<div class="dataset-list">
{% for dataset in datasets %}
<a href="{{ dataset.url }}" style="background-image: url(https://nyc3.digitaloceanspaces.com/megapixels/v1{{ dataset.url }}assets/index.jpg)">
<div class="dataset">
<span>{{ dataset.title }}</span>
</div>
</a>
{% endfor %}
</div>
</section>
{% endblock %}
|