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

 put-annotations-form.html

View raw Download
text/html • 762 B
HTML document, ASCII text
        
            
1
{% extends "default.html" %}
2
{% block title %}Submit JSON annotations | gigadata{% endblock %}
3
{% block content %}
4
<x-frame style="--width: 768px">
5
<form method="POST" class="vbox">
6
<h1>Submit JSON annotations: {{ resource.title }}</h1>
7
<p>
8
Submit JSON annotations for the picture <a href="/picture/{{ resource.id }}">{{ resource.title }}</a>.
9
Check the documentation for the expected format.
10
</p>
11
<label>
12
<span class="required-asterisk">JSON annotations</span>
13
<textarea name="annotations" required rows="30"></textarea>
14
</label>
15
<button type="submit">Submit</button>
16
</form>
17
</x-frame>
18
{% endblock %}