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

 gigadata.html

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