Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,63 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# <span style="color:Red">A larger version of YT-100K dataset -> YT-30M dataset with 30 million YouTube multilingual multicategory comments is also available which can be obtained by directly emailing the author of this dataset.</span>
|
2 |
+
# Introduction
|
3 |
+
|
4 |
+
This work introduces two large-scale multilingual comment datasets, YT-30M (and YT-100K) from YouTube. The code and both the datasets: YT-30M (full) and YT-100K (randomly selected 100K sample from YT-30M) are publicly released for further research. YT-30M (YT-100K) contains 32M (100K) comments posted by YouTube channel belonging to YouTube categories. Each comment is associated with a video ID, comment ID, commenter name, commenter channel ID, comment text, upvotes, original channel ID and category of the YouTube channel (e.g., News & Politics, Science & Technology, etc.).
|
5 |
+
|
6 |
+
# Data Description
|
7 |
+
|
8 |
+
Each entry in the dataset is related to one comment for a specific YouTube video in the related category with the following columns: videoID, commentID, commenterName, commenterChannelID, comment, votes, originalChannelID, category. Each field is explained below:
|
9 |
+
```
|
10 |
+
videoID: represents the video ID in YouTube.
|
11 |
+
commentID: represents the comment ID.
|
12 |
+
commenterName: represents the name of the commenter.
|
13 |
+
commenterChannelID: represents the ID of the commenter.
|
14 |
+
comment: represents the comment text.
|
15 |
+
votes: represents the upvotes received by that comment.
|
16 |
+
originalChannelID: represents the original channel ID who posted the video.
|
17 |
+
category: represents the category of the YouTube video.
|
18 |
+
```
|
19 |
+
# Data Anonymization
|
20 |
+
|
21 |
+
The data is anonymized by removing all Personally Identifiable Information (PII).
|
22 |
+
|
23 |
+
# Data sample
|
24 |
+
```
|
25 |
+
{
|
26 |
+
"videoID": "ab9fe84e2b2406efba4c23385ef9312a",
|
27 |
+
"commentID": "488b24557cf81ed56e75bab6cbf76fa9",
|
28 |
+
"commenterName": "b654822a96eae771cbac945e49e43cbd",
|
29 |
+
"commenterChannelID": "2f1364f249626b3ca514966e3ef3aead",
|
30 |
+
"comment": "ich fand den Handelwecker am besten",
|
31 |
+
"votes": 2,
|
32 |
+
"originalChannelID": "oc_2f1364f249626b3ca514966e3ef3aead",
|
33 |
+
"category": "entertainment"
|
34 |
+
}
|
35 |
+
```
|
36 |
+
# Multilingual data
|
37 |
+
|
38 |
+
| **Language** | **Text** |
|
39 |
+
|
40 |
+
|--------------|---------------------------------------------------|
|
41 |
+
|
42 |
+
| English | You girls are so awesome!! |
|
43 |
+
|
44 |
+
| Russian | Точно так же Я стрелец |
|
45 |
+
|
46 |
+
| Hindi | आज भी भाई कʏ आवाज में वही पुरानी बात है.... |
|
47 |
+
|
48 |
+
| Chinese | 無論如何,你已經是台灣YT訂閱數之首 |
|
49 |
+
|
50 |
+
| Bengali | খুিন হািসনােক ভারেতর àধানমন্... |
|
51 |
+
|
52 |
+
| Spanish | jajajaj esto tiene que ser una brom |
|
53 |
+
|
54 |
+
| Portuguese | nossa senhora!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!... |
|
55 |
+
|
56 |
+
| Malayalam | നമസ്കാരം |
|
57 |
+
|
58 |
+
| Telegu | నమసాక్రం |
|
59 |
+
|
60 |
+
| Japanese | こんにちは |
|
61 |
+
|
62 |
+
# License
|
63 |
+
[CC] (https://choosealicense.com/licenses/cc-by-4.0/#)
|