Web platform for sharing free image data for ML and research

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

By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 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