lmilliken commited on
Commit
e0dd203
1 Parent(s): 2d18b25

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +75 -1
README.md CHANGED
@@ -8,11 +8,85 @@ dataset_info:
8
  dtype: image
9
  splits:
10
  - name: train
11
- num_bytes: 282285477.0
12
  num_examples: 10000
13
  - name: test
14
  num_bytes: 56612023.875
15
  num_examples: 2001
16
  download_size: 320681179
17
  dataset_size: 338897500.875
 
 
 
 
 
 
 
 
 
 
 
18
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  dtype: image
9
  splits:
10
  - name: train
11
+ num_bytes: 282285477
12
  num_examples: 10000
13
  - name: test
14
  num_bytes: 56612023.875
15
  num_examples: 2001
16
  download_size: 320681179
17
  dataset_size: 338897500.875
18
+ task_categories:
19
+ - text-to-image
20
+ multilinguality:
21
+ - monolingual
22
+ language:
23
+ - de
24
+ size_categories:
25
+ - 1K<n<10K
26
+ source_datasets:
27
+ - original
28
+ pretty_name: Fashion12k DE
29
  ---
30
+ # Dataset Card for Fashion12K DE
31
+
32
+ ## Dataset Description
33
+
34
+ - **Repository:** [Fashion12K](https://github.com/Toloka/Fashion12K_german_queries)
35
+ -
36
+ ### Dataset Summary
37
+
38
+ This dataset is a German-language dataset based on the [Fashion12K](https://github.com/Toloka/Fashion12K_german_queries) dataset, which originally contains both English and German text descriptions for each item.
39
+
40
+ ## Dataset Structure
41
+
42
+ ### Data Instances
43
+
44
+ Each data point consists of a 'text' and an 'image' field, where the 'text' field describes an item of clothing in German, and the 'image' field contains and image of that item of clothing.
45
+
46
+ ### Data Fields
47
+
48
+ - 'text': A string describing the item of clothing.
49
+ - 'image': A `PIL.Image.Image` object containing the image. Note that when accessing the image column: dataset[0]["image"] the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time. Thus it is important to first query the sample index before the "image" column, i.e. dataset[0]["image"] should always be preferred over dataset["image"][0].
50
+
51
+ ### Data Splits
52
+
53
+ | | train | test |
54
+ |------------|-------|------|
55
+ | # of items | 10000 | 2001 |
56
+ | test | | |
57
+
58
+ ## Dataset Creation
59
+
60
+ ### Curation Rationale
61
+
62
+ Fashion12K DE was created for the purposes of training multilingual CLIP models
63
+
64
+ ### Source Data
65
+
66
+ #### Initial Data Collection and Normalization
67
+
68
+ Images were sampled from the [Fashion200K dataset](https://github.com/xthan/fashion-200k)
69
+
70
+ ### Annotations
71
+
72
+ #### Annotation process
73
+
74
+ Data was annotated using [Toloka](https://toloka.ai/). See their site for more details
75
+
76
+ ## Additional Information
77
+
78
+ ### Dataset Curators
79
+
80
+ [More Information Needed]
81
+
82
+ ### Licensing Information
83
+
84
+ [More Information Needed]
85
+
86
+ ### Citation Information
87
+
88
+ [More Information Needed]
89
+
90
+ ### Contributions
91
+
92
+ [More Information Needed]