Bingsu commited on
Commit
f67aaac
1 Parent(s): a63ea8e

docs: update readme

Browse files
Files changed (1) hide show
  1. README.md +20 -74
README.md CHANGED
@@ -34,19 +34,6 @@ task_ids:
34
  - [Data Instances](#data-instances)
35
  - [Data Fields](#data-instances)
36
  - [Data Splits](#data-instances)
37
- - [Dataset Creation](#dataset-creation)
38
- - [Curation Rationale](#curation-rationale)
39
- - [Source Data](#source-data)
40
- - [Annotations](#annotations)
41
- - [Personal and Sensitive Information](#personal-and-sensitive-information)
42
- - [Considerations for Using the Data](#considerations-for-using-the-data)
43
- - [Social Impact of Dataset](#social-impact-of-dataset)
44
- - [Discussion of Biases](#discussion-of-biases)
45
- - [Other Known Limitations](#other-known-limitations)
46
- - [Additional Information](#additional-information)
47
- - [Dataset Curators](#dataset-curators)
48
- - [Licensing Information](#licensing-information)
49
- - [Citation Information](#citation-information)
50
 
51
  ## Dataset Description
52
 
@@ -60,6 +47,8 @@ task_ids:
60
 
61
  [아카라이브 베스트 라이브 채널](https://arca.live/b/live)의 2021년 8월 16일부터 2022년 5월 6일까지의 데이터를 수집하여, 댓글만 골라낸 데이터입니다.
62
 
 
 
63
  ### Supported Tasks and Leaderboards
64
 
65
  [Needs More Information]
@@ -72,70 +61,27 @@ ko
72
 
73
  ### Data Instances
74
 
75
- [Needs More Information]
76
 
77
  ### Data Fields
78
 
79
- [Needs More Information]
80
 
81
  ### Data Splits
82
 
83
- [Needs More Information]
84
-
85
- ## Dataset Creation
86
-
87
- ### Curation Rationale
88
-
89
- [Needs More Information]
90
-
91
- ### Source Data
92
-
93
- #### Initial Data Collection and Normalization
94
-
95
- [Needs More Information]
96
-
97
- #### Who are the source language producers?
98
-
99
- [Needs More Information]
100
-
101
- ### Annotations
102
-
103
- #### Annotation process
104
-
105
- [Needs More Information]
106
-
107
- #### Who are the annotators?
108
-
109
- [Needs More Information]
110
-
111
- ### Personal and Sensitive Information
112
-
113
- [Needs More Information]
114
-
115
- ## Considerations for Using the Data
116
-
117
- ### Social Impact of Dataset
118
-
119
- [Needs More Information]
120
-
121
- ### Discussion of Biases
122
-
123
- [Needs More Information]
124
-
125
- ### Other Known Limitations
126
-
127
- [Needs More Information]
128
-
129
- ## Additional Information
130
-
131
- ### Dataset Curators
132
-
133
- [Needs More Information]
134
-
135
- ### Licensing Information
136
-
137
- [Needs More Information]
138
-
139
- ### Citation Information
140
-
141
- [Needs More Information]
 
34
  - [Data Instances](#data-instances)
35
  - [Data Fields](#data-instances)
36
  - [Data Splits](#data-instances)
 
 
 
 
 
 
 
 
 
 
 
 
 
37
 
38
  ## Dataset Description
39
 
 
47
 
48
  [아카라이브 베스트 라이브 채널](https://arca.live/b/live)의 2021년 8월 16일부터 2022년 5월 6일까지의 데이터를 수집하여, 댓글만 골라낸 데이터입니다.
49
 
50
+ 커뮤니티 특성상, 민감한 데이터들도 많으므로 사용에 주의가 필요합니다.
51
+
52
  ### Supported Tasks and Leaderboards
53
 
54
  [Needs More Information]
 
61
 
62
  ### Data Instances
63
 
64
+ - Size of downloaded dataset files: 21.3 MB
65
 
66
  ### Data Fields
67
 
68
+ - text: `string`
69
 
70
  ### Data Splits
71
 
72
+ | | train |
73
+ | ---------- | ------ |
74
+ | # of texts | 195323 |
75
+
76
+ ```pycon
77
+ >>> from datasets import load_dataset
78
+ >>>
79
+ >>> data = load_dataset("Bingsu/arcalive_220506")
80
+ >>> data["train"].features
81
+ {'text': Value(dtype='string', id=None)}
82
+ ```
83
+
84
+ ```pycon
85
+ >>> data["train"][0]
86
+ {'text': '오오오오...'}
87
+ ```