blockmesh commited on
Commit
0282812
·
verified ·
1 Parent(s): ed9df96

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +53 -3
README.md CHANGED
@@ -1,3 +1,53 @@
1
- ---
2
- license: odc-by
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: odc-by
3
+ language:
4
+ - en
5
+ tags:
6
+ - twitter
7
+ - x
8
+ - tweets
9
+ - json
10
+ - ljson
11
+ size_categories:
12
+ - 10M<n<100M
13
+ ---
14
+
15
+ # Dataset Summary
16
+
17
+ The dataset is a sample of our Twitter data collection.
18
+ It has been prepared for educational and research purposes.
19
+
20
+ It includes public tweets.
21
+
22
+ The dataset is comprised of a JSON lines.
23
+ The format is:
24
+
25
+ ```json
26
+ {
27
+ "user":"Myy23081040",
28
+ "id":"1870163769273589994",
29
+ "link":"https://x.com/Myy23081040/status/1870163769273589994",
30
+ "tweet":"Seu pai é um fofo skskks",
31
+ "date":"2024-12-21",
32
+ "reply":"0",
33
+ "retweet":"0",
34
+ "like":"2"
35
+ }
36
+ ```
37
+
38
+ * `user` the Twitter username that tweeted it.
39
+
40
+ * `id` the Twitter ID of this tweet.
41
+
42
+ * `link` a direct link to the tweet.
43
+
44
+ * `tweet` the text content of the tweet.
45
+
46
+ * `date` when it was collected.
47
+
48
+ * `reply` how many replies when it was collected.
49
+
50
+ * `retweet` how many retweets when it was colected.
51
+
52
+ * `like` how many likes when it was collected.
53
+