levente-murgas commited on
Commit
1657960
·
verified ·
1 Parent(s): d7ca126

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +64 -0
README.md ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: reddit_memes
3
+ size_categories:
4
+ - 100K<n<1M
5
+ ---
6
+
7
+ ## Table of Contents
8
+ - [Dataset Description](#dataset-description)
9
+ - [Dataset Summary](#dataset-summary)
10
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
11
+ - [Languages](#languages)
12
+ - [Dataset Structure](#dataset-structure)
13
+ - [Data Instances](#data-instances)
14
+ - [Data Fields](#data-fields)
15
+ - [Data Splits](#data-splits)
16
+
17
+ ## Dataset Description
18
+
19
+ ### Dataset Summary
20
+ This dataset comprises images collected from Reddit, along with various metadata. The data are ideal for tasks that require analysis of online community interactions and content engagement, particularly in the context of image and text analysis.
21
+
22
+ ### Supported Tasks and Leaderboards
23
+ This dataset supports natural language processing and image analysis tasks, including sentiment analysis, trend analysis, and community engagement studies.
24
+
25
+ ### Languages
26
+ The text data are primarily in English.
27
+
28
+ ## Dataset Structure
29
+
30
+ ### Data Instances
31
+ An example data instance from the dataset might look like this:
32
+ ```json
33
+ {
34
+ "id": "2020-02-02_001",
35
+ "title_raw": "Look at this amazing sunset!",
36
+ "score": 320,
37
+ "num_comments": 45,
38
+ "over18": false,
39
+ "url": "https://reddit.com/r/examplepost",
40
+ "date": "2023-07-04",
41
+ "ocr_raw": "Amazing sunset at the beach",
42
+ "all_text_stemmed": "amaz sunset beach",
43
+ "all_text_processed": "Amazing sunset at the beach",
44
+ "caption": "A beautiful sunset over the ocean",
45
+ "file_name": "a1b2c3.jpg"
46
+ }
47
+ ```
48
+ ### Data Fields
49
+ - `id`: Unique identifier for each post.
50
+ - `title_raw`: Original title of the Reddit post.
51
+ - `score`: Number of upvotes subtracted from number of downvotes. Can be negative.
52
+ - `num_comments`: Number of comments on the post.
53
+ - `over18`: Boolean indicating if the content is for adults only.
54
+ - `url`: URL to the original Reddit post.
55
+ - `date`: Date the post was uploaded.
56
+ - `ocr_raw`: Text extracted from the image using OCR.
57
+ - `all_text_stemmed`: Stemmed version of the OCR text.
58
+ - `all_text_processed`: Fully processed version of the OCR text.
59
+ - `caption`: An image description generated by [BLIP](https://github.com/salesforce/BLIP).
60
+ - `file_name`: Name of the file stored locally.
61
+
62
+ ### Data Splits
63
+ This dataset does not contain predefined splits such as training, testing, or validation. Users are encouraged to define these splits based on their research needs and methodologies.
64
+