File size: 6,441 Bytes
c97dafd 4e0faec 558ac47 4e0faec 558ac47 4e0faec 558ac47 4e0faec 558ac47 c97dafd 4e0faec 0506030 4e0faec e72d081 4e0faec 2f7e3e3 4e0faec e72d081 4e0faec e72d081 4e0faec e72d081 4e0faec e72d081 4e0faec 2f7e3e3 4e0faec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 |
---
annotations_creators:
- crowd-generated
language:
- de
- en
- fr
license: cc-by-sa-4.0
task_categories:
- object-detection
- image-classification
pretty_name: 'ARTigo: Social Image Tagging'
tags:
- lam
dataset_info:
features:
- name: id
dtype: int64
- name: hash_id
dtype: string
- name: titles
sequence:
- name: id
dtype: int64
- name: name
dtype: string
- name: creators
sequence:
- name: id
dtype: int64
- name: name
dtype: string
- name: location
dtype: string
- name: institution
dtype: string
- name: source
struct:
- name: id
dtype: int64
- name: name
dtype: string
- name: url
dtype: string
- name: path
dtype: string
- name: tags
sequence:
- name: id
dtype: int64
- name: name
dtype: string
- name: language
dtype: string
- name: count
dtype: int64
- name: regions
sequence:
- name: x
dtype: float64
- name: y
dtype: float64
- name: width
dtype: float64
- name: height
dtype: float64
- name: image
dtype: image
splits:
- name: train
num_bytes: 269611482
num_examples: 60633
download_size: 5625395643
dataset_size: 269611482
---
# Dataset Card for ARTigo: Social Image Tagging
## Table of Contents
- [Table of Contents](#table-of-contents)
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Additional Information](#additional-information)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
## Dataset Description
- **Homepage:** https://www.artigo.org
- **Repository:** https://github.com/arthist-lmu/artigo
- **Data:** https://doi.org/10.5281/zenodo.8202331
### Dataset Summary
ARTigo (https://www.artigo.org/) is a Citizen Science project that has been jointly developed at the Institute for Art History and the Institute for Informatics at Ludwig Maximilian University of Munich since 2010. It enables participants to engage in the tagging of artworks, thus fostering knowledge accumulation and democratizing access to a traditionally elitist field. ARTigo is built as an interactive web application that offers Games With a Purpose: in them, players are presented with an image – and then challenged to communicate with one another using visual or textual annotations, *tags*, within a given time. Through this playful approach, the project aims to inspire greater appreciation for art and draw new audiences to museums and archives. It streamlines the discoverability of art-historical images, while promoting inclusivity, effective communication, and collaborative research practices. The project’s data are freely available to the wider research community for novel scientific investigations.
### Supported Tasks and Leaderboards
- `object-detection`: This dataset can be used to train models for object detection tasks on art-historical images.
- `image-classification`: This dataset can also be used for image classification tasks by using only the tags and not the associated region information.
## Dataset Structure
This dataset has a single configuration.
### Data Instances
An example instance from this dataset:
```python
{
'id': 32254,
'hash_id': 'e34fa90bf4c73d20ac19b14fa615206e',
'titles': {
'id': [10893],
'name': ['Entwurf für ein zwölfteiliges Kartenspiel']
},
'creators': {
'id': [2391],
'name': ['Félix Vallotton']
},
'location': 'Lausanne',
'institution': 'Galerie du Chêne',
'source': {
'id': 2,
'name': 'Artemis',
'url': 'http://artemis.uni-muenchen.de/'
},
'path': 'https://api.artigo.org/media/e3/4f/e34fa90bf4c73d20ac19b14fa615206e.jpg',
'tags': {
'id': [6, 10, 13, ..., 206331],
'name': ['blau', 'feder', 'flügel', ..., 'herzober'],
'language': ['de', 'de', 'de', ..., 'de'],
'count': [16, 6, 6, ..., 1],
'regions': [None, None, None, ..., None]
},
'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=381x600 at 0x7FEF3A415820>
}
```
### Data Fields
This dataset contains ten fields:
- `id`: a unique identifier for the image;
- `hash_id`: a unique identifier for the image based on its content (e.g., image hash);
- `titles`: a list of titles associated with the image, with each title having the following key-value pairs:
- `id`: a unique identifier for the title;
- `name`: the name of the title;
- `creators`: a list of creators associated with the image, with each creator having the following key-value pairs:
- `id`: a unique identifier for the creator;
- `name`: the name of the creator;
- `location`: the location associated with the image;
- `institution`: the institution that holds the image;
- `source`: information about the source of the image, with the following key-value pairs:
- `id`: a unique identifier for the source;
- `name`: the name of the source;
- `url`: the URL of the source;
- `path`: the path to the image file;
- `tags`: a list of tags associated with the image, with each tag having the following key-value pairs:
- `id`: a unique identifier for the tag;
- `name`: the name of the tag;
- `language`: the language of the tag (if available);
- `count`: the number of times the tag has been applied to the image;
- `regions`: the regions of the image to which the tag can be applied (if available);
- `image`: the image.
### Data Splits
This dataset doesn't provide any predefined train, validation or test splits.
## Additional Information
### Licensing Information
[CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/)
### Citation Information
```
@dataset{bry_et_al_artigo,
author = {Bry, François and
Kohle, Hubertus and
Krefeld, Thomas and
Riepl, Christian and
Schneider, Stefanie and
Schön, Gerhard and
Schulz, Klaus},
title = {{ARTigo}: Social Image Tagging (Aggregated Data)},
publisher = {Zenodo},
doi = {10.5281/zenodo.8202331},
url = {https://doi.org/10.5281/zenodo.8202331}}
```
|