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

 418.html

View raw Download
text/html • 514 B
HTML document, ASCII text
        
            
1
{% extends "error.html" %}
2
3
{% set error = "I'm a teapot" %}
4
{% set error_code = 418 %}
5
6
{% block error_content %}
7
<p>
8
This server is a teapot, so it is unable to brew coffee. In reality, you're reaching a
9
route that isn't yet implemented.<br>
10
Enjoy the random picture here to compensate for our missing functionality.
11
</p>
12
<p>
13
<a href="/">Home page</a>
14
</p>
15
<p>
16
<a href="/picture/{{ random_picture.id }}/">Like what you see?</a>
17
</p>
18
{% endblock %}
19