levente-murgas commited on
Commit
69205a9
·
verified ·
1 Parent(s): cbe645a

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +80 -0
README.md ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ pretty_name: twitter_memes
5
+ size_categories:
6
+ - 100K<n<1M
7
+ ---
8
+
9
+ # Dataset Card for Twitter Image Dataset
10
+
11
+ ## Table of Contents
12
+ - [Dataset Description](#dataset-description)
13
+ - [Dataset Summary](#dataset-summary)
14
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
15
+ - [Languages](#languages)
16
+ - [Dataset Structure](#dataset-structure)
17
+ - [Data Instances](#data-instances)
18
+ - [Data Fields](#data-fields)
19
+ - [Data Splits](#data-splits)
20
+ - [Dataset Creation](#dataset-creation)
21
+ - [Curation Rationale](#curation-rationale)
22
+ - [Source Data](#source-data)
23
+ - [Annotations](#annotations)
24
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
25
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
26
+ - [Social Impact of Dataset](#social-impact-of-dataset)
27
+ - [Discussion of Biases](#discussion-of-biases)
28
+ - [Other Known Limitations](#other-known-limitations)
29
+ - [Additional Information](#additional-information)
30
+ - [Dataset Curators](#dataset-curators)
31
+ - [Licensing Information](#licensing-information)
32
+ - [Citation Information](#citation-information)
33
+ - [Contributions](#contributions)
34
+
35
+ ## Dataset Description
36
+
37
+ ### Dataset Summary
38
+ This dataset contains images scraped from Twitter along with associated metadata. The dataset is intended for research purposes, focusing on image analysis, natural language processing, and social media dynamics studies.
39
+
40
+ ### Supported Tasks and Leaderboards
41
+ The dataset can be used for tasks such as image recognition, sentiment analysis, text extraction from images (OCR), and social media trend analysis.
42
+
43
+ ### Languages
44
+ The text in the dataset is primarily in English, as extracted from Twitter posts.
45
+
46
+ ## Dataset Structure
47
+
48
+ ### Data Instances
49
+ A data instance consists of an image and its metadata. For example:
50
+ ```json
51
+ {
52
+ "id": "12345",
53
+ "user_id": "67890",
54
+ "date": "2023-07-04",
55
+ "likes": 150,
56
+ "shares": 25,
57
+ "comments": 40,
58
+ "post_text": "Here's a great moment captured #fun",
59
+ "post_link": "https://twitter.com/example/status/12345",
60
+ "img_link": "https://example.com/img.jpg",
61
+ "ocr": "Here's a great moment captured",
62
+ "file_name": "12345.jpg"
63
+ }
64
+ ```
65
+ ### Data Fields
66
+ - `id`: Unique identifier for each post.
67
+ - `user_id`: Twitter user ID of the post author.
68
+ - `date`: Date the post was made.
69
+ - `likes`: Number of likes the post received.
70
+ - `shares`: Number of shares the post received.
71
+ - `comments`: Number of comments on the post.
72
+ - `post_text`: Text content of the post.
73
+ - `post_link`: URL to the original Twitter post.
74
+ - `img_link`: URL to the image.
75
+ - `ocr`: Text extracted from the image using OCR.
76
+ - `file_name`: Name of the file stored locally.
77
+
78
+ ### Data Splits
79
+ This dataset does not have predefined splits (train/test/validation). Users can create splits as needed for their specific tasks.
80
+