gigadata.html
HTML document, Unicode text, UTF-8 text
1<!DOCTYPE html> 2<html lang="en"> 3<head> 4<meta charset="UTF-8"> 5<title> 6Gigadata 7</title> 8<link rel="stylesheet" href="/static/style.css"> 9<meta name="viewport" content="width=device-width, initial-scale=1.0"> 10</head> 11<body> 12<header> 13<nav> 14<ul> 15<li><a href="/">Home</a></li> 16<li><a href="/projects">Projects</a></li> 17<li><a href="/index">Index</a></li> 18<li><a href="/about">About</a></li> 19<li><a href="https://roundabout-host.com/roundabout">Roundabout-host</a></li> 20</ul> 21<ul> 22<li><a href="mailto:root@roundabout-host.com" id="mail-link">root@roundabout-host.com</a></li> 23</ul> 24</nav> 25</header> 26<main> 27 28<h1 class="project-title"> 29<span>Gigadata</span> 30<a href="https://roundabout-host.com/roundabout/gigadata">Repository</a> 31</h1> 32<article class="content-area"> 33<p>Gigadata is an image dataset collection and annotation platform. It allows anyone 34to easily contribute to the dataset by uploading images and annotating objects, 35and to use the dataset for training machine learning models. 36</p><p>The platform is designed to host a single huge dataset, which spans many classes, 37fields of interest, and use cases. Using querying it is easily possible to download 38only the parts that you need, though — for example, to get a JSON of the photos 39which contain either a cat or a dog (assuming these classes are registered on the 40server), and are under a PD equivalent licence: 41</p><pre data-language="yaml">want: 42- has: ["Domestic cat (Felis catus)", "Dog (Canis lupus familiaris)"] 43- nature: ["photo"] 44- licence: ["CC0-1.0", "X-public-domain", "X-informal-do-anything"] 45</pre><p>Classes are hierarchical, so many search problems are solved. For example, consider 46this hierarchy (excuse my text art): 47</p><pre data-language=""> /- Aluminium food container 48/- Aluminium household waste --- Aluminium can 49/- Metal household waste /- Plastic bag 50Household waste --- Plastic household waste --- Plastic bottle \ 51/ / \ 52Bottle ---------/---------------------------/ - PET bottle --- Clear PET bottle 53/ / / 54Plastic object ---- PET object --------------------------------/ / 55\-------------------------- Clear PET object / 56</pre><p>Multiple inheritance is also possible, seen here in Plastic bottle, for instance. 57It's both a Plastic household waste and a Bottle, and because it's a Plastic 58household waste, it's also a Household waste and a Plastic object. All sorts of 59hierarchies like this one are possible; the <code>has</code> filter is used to search for 60an object or its descendants. 61</p><p>There are more APIs, not just the search one. You can upload images, annotate 62them, and manage galleries programmatically. 63</p><p>If one wants more organisation of a certain set of images, a gallery feature is 64available where users can create galleries of images. Other users can also be 65assigned to add images to a gallery. 66</p><p>To prevent vandalism, you cannot change someone else's image annotations, but 67you can copy the image and make the changes; if the owner of the original approves, 68they can mark their version as obsolete and replaced by your version, which causes 69it to disappear from the search results. 70</p><p>The platform is made with Python, Flask and SQLAlchemy, just like the roundabout. 71</p><p>As always, this platform is free/libre under the AGPL. An official instance, Roundabout 72Datasets, is hosted at 73<a href="https://datasets.roundabout-host.com">datasets.roundabout-host.com</a>. Anyone can 74add images there, but they have to be free/libre. Nothing is guaranteed. 75</p><p>As far as I know, there's nothing else like this platform (at least not free/libre). 76<a href="mailto:root@roundabout-host.com">I'd be happy to be proven wrong, though</a>. 77</p><p>And why did I put "waste" in the topics? I'm moving the waste detection dataset 78there. 79</p> 80</article> 81 82</main> 83<footer> 84<p>Page generated on Saturday, 4 January 2025 at 11:16:28</p> 85<p xmlns:cc="http://creativecommons.org/ns#" >This work is marked with <a href="https://creativecommons.org/publicdomain/zero/1.0/?ref=chooser-v1" target="_blank" rel="license noopener noreferrer" style="display:inline-block;">CC0 1.0 Universal</a> (🄍). No rights reserved.</p> 86<p>Hosted at <a href="https://roundabout-host.com/roundabout">Roundabout-host</a> using the static site service, and generated with <a href="/projects/ampoule.html">Ampoule</a>.</p> 87<a href="#">Back to top</a> 88</footer> 89</body> 90</html>