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