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.

 404.html

View raw Download
text/html • 527 B
HTML document, ASCII text
        
            
1
{% extends "error.html" %}
2
3
{% set error = "Page not found" %}
4
{% set error_code = 404 %}
5
6
{% block error_content %}
7
<p>
8
The server couldn't find the resource you requested. It might have previously existed, or it might have never been there.
9
Make sure you have the correct URL.<br>
10
Enjoy this random and unrelated picture instead.
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