Web platform for sharing free image data for ML and research

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

Important information: Google announced that, from September 2026, Android devices will require ALL apps to be signed by Google, effectively leading to an iOS situation. Value your right to a computer that does what you want; do not tolerate this monopolistic practice! Contact me if you don't understand why it is bad. Click to learn more.

 object-types.html

View raw Download
text/html • 447 B
HTML document, ASCII text
        
            
1
{% extends "default.html" %}
2
3
{% block title %}List of objects | gigadata{% endblock %}
4
5
{% block content %}
6
<x-frame style="--width: 768px" class="vbox">
7
<h1>Objects</h1>
8
<dl>
9
{% for object in objects %}
10
<dt><a href="/object/{{ object.id | urlencode }}">{{ object.id }}</a></dt>
11
<dd>{{ object.description }}</dd>
12
{% endfor %}
13
</dl>
14
</x-frame>
15
{% endblock %}
16