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 • 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