Web platform for sharing free image data for ML and research

Homepage: https://datasets.roundabout-host.com

 picture.html

View raw Download
text/html • 593 B
HTML document, ASCII text
        
            
1
{% extends "default.html" %}
2
{% block title %}Picture | gigadata{% endblock %}
3
{% block content %}
4
<x-frame style="--width: 768px">
5
<h1>{{ resource.title }}</h1>
6
<p>{{ resource.description }}</p>
7
<img src="/raw/picture/{{ resource.id }}" alt="{{ resource.title }}">
8
<p>
9
<a href="{{ resource.origin_url }}">Original source</a> |
10
<a href="/raw/picture/{{ resource.id }}">View</a> |
11
<a href="/raw/picture/{{ resource.id }}" download="GigadataPicture_{{ resource.id }}">Download</a>
12
</p>
13
</x-frame>
14
{% endblock %}