File size: 5,215 Bytes
c97dafd 4e0faec c97dafd 4e0faec e72d081 4e0faec c97dafd 4e0faec e72d081 4e0faec e72d081 4e0faec e72d081 4e0faec e72d081 4e0faec e72d081 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 |
---
annotations_creators:
- crowd-generated
license: cc-by-sa-4.0
language:
- de
- en
- fr
tags:
- lam
task_categories:
- object-detection
- image-classification
pretty_name: 'ARTigo: Social Image Tagging'
---
# 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
### 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
The 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
The 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}}
```
|