Bingsu commited on
Commit
2fa581b
1 Parent(s): bbf99a8

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +80 -0
README.md ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - no-annotation
4
+ language_creators:
5
+ - crowdsourced
6
+ language:
7
+ - ko
8
+ license:
9
+ - cc-by-4.0
10
+ multilinguality:
11
+ - monolingual
12
+ pretty_name: laion2B-multi-korean-subset
13
+ size_categories:
14
+ - 10M<n<100M
15
+ task_categories:
16
+ - feature-extraction
17
+ ---
18
+ # laion2B-multi-korean-subset
19
+
20
+ ## Dataset Description
21
+ - **Homepage:** [laion-5b](https://laion.ai/blog/laion-5b/)
22
+ - **Huggingface:** [laion/laion2B-multi](https://huggingface.co/datasets/laion/laion2B-multi)
23
+
24
+ ## About dataset
25
+ Data organized by extracting only Korean data from [laion/laion2B-multi](https://huggingface.co/datasets/laion/laion2B-multi)
26
+
27
+ ### Lisence
28
+ CC-BY-4.0
29
+ ## Data Structure
30
+
31
+ ### Data Instance
32
+
33
+ ```pycon
34
+ >>> from datasets import load_dataset
35
+ >>> dataset = load_dataset("Bingsu/laion2B-multi-korean-subset")
36
+ >>> dataset
37
+ DatasetDict({
38
+ train: Dataset({
39
+ features: ['SAMPLE_ID', 'URL', 'TEXT', 'HEIGHT', 'WIDTH', 'LICENSE', 'LANGUAGE', 'NSFW', 'similarity'],
40
+ num_rows: 11376263
41
+ })
42
+ })
43
+ ```
44
+
45
+ ```pycon
46
+ >>> dataset["train"].features
47
+ {'SAMPLE_ID': Value(dtype='int64', id=None),
48
+ 'URL': Value(dtype='string', id=None),
49
+ 'TEXT': Value(dtype='string', id=None),
50
+ 'HEIGHT': Value(dtype='int32', id=None),
51
+ 'WIDTH': Value(dtype='int32', id=None),
52
+ 'LICENSE': Value(dtype='string', id=None),
53
+ 'LANGUAGE': Value(dtype='string', id=None),
54
+ 'NSFW': Value(dtype='string', id=None),
55
+ 'similarity': Value(dtype='float32', id=None)}
56
+ ```
57
+
58
+ ### Data Size
59
+
60
+ download: 1.56 GiB<br>
61
+ generated: 2.37 GiB<br>
62
+ total: 3.93 GiB
63
+
64
+ ### Data Field
65
+
66
+ - 'SAMPLE_ID': `int`
67
+ - 'URL': `string`
68
+ - 'TEXT': `string`
69
+ - 'HEIGHT': `int`
70
+ - 'WIDTH': `int`
71
+ - 'LICENSE': `string`
72
+ - 'LANGUAGE': `string`
73
+ - 'NSFW': `string`
74
+ - 'similarity': `float`
75
+
76
+ ### Data Splits
77
+
78
+ | | train |
79
+ | ----------- | -------- |
80
+ | num of data | 11376263 |