levente-murgas commited on
Commit
0c2a059
·
verified ·
1 Parent(s): b33da30

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +65 -0
README.md CHANGED
@@ -38,4 +38,69 @@ configs:
38
  data_files:
39
  - split: train
40
  path: data/train-*
 
 
 
41
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38
  data_files:
39
  - split: train
40
  path: data/train-*
41
+ pretty_name: facebook_memes
42
+ size_categories:
43
+ - 100K<n<1M
44
  ---
45
+
46
+ # Dataset Card for Facebook Image Dataset
47
+
48
+ ## Table of Contents
49
+ - [Dataset Description](#dataset-description)
50
+ - [Dataset Summary](#dataset-summary)
51
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
52
+ - [Languages](#languages)
53
+ - [Dataset Structure](#dataset-structure)
54
+ - [Data Instances](#data-instances)
55
+ - [Data Fields](#data-fields)
56
+ - [Data Splits](#data-splits)
57
+
58
+ ## Dataset Description
59
+
60
+ ### Dataset Summary
61
+ This dataset contains images scraped from Facebook along with associated metadata. The dataset is intended for research purposes, focusing on image analysis, natural language processing, and social media dynamics studies.
62
+
63
+ ### Supported Tasks and Leaderboards
64
+ The dataset can be used for tasks such as image recognition, sentiment analysis, text extraction from images (OCR), and social media trend analysis.
65
+
66
+ ### Languages
67
+ The text in the dataset is primarily in English, as extracted from Facebook posts.
68
+
69
+ ## Dataset Structure
70
+
71
+ ### Data Instances
72
+ A data instance consists of an image and its metadata. For example:
73
+ ```json
74
+ {
75
+ "id": "12345",
76
+ "user_id": "67890",
77
+ "date": "2023-07-04",
78
+ "likes": 150,
79
+ "shares": 25,
80
+ "comments": 40,
81
+ "post_text": "Here's a great moment captured #fun",
82
+ "post_link": "https://twitter.com/example/status/12345",
83
+ "img_link": "https://example.com/img.jpg",
84
+ "ocr": "Here's a great moment captured",
85
+ "captions": "A boy holding a balloon.",
86
+ "reactions": ['Haha: 3 people', 'Love: 1 person']
87
+ "file_name": "12345.jpg"
88
+ }
89
+ ```
90
+ ### Data Fields
91
+ - `id`: Unique identifier for each post.
92
+ - `user_id`: Twitter user ID of the post author.
93
+ - `date`: Date the post was made.
94
+ - `likes`: Number of likes the post received.
95
+ - `shares`: Number of shares the post received.
96
+ - `comments`: Number of comments on the post.
97
+ - `post_text`: Text content of the post.
98
+ - `post_link`: URL to the original Twitter post.
99
+ - `img_link`: URL to the image.
100
+ - `ocr`: Text extracted from the image using OCR.
101
+ - `captions`: An image description generated by [BLIP](https://github.com/salesforce/BLIP).
102
+ - `reactions`: Reactions native to Facebook, given by users for the post.
103
+ - `file_name`: Name of the file stored locally.
104
+
105
+ ### Data Splits
106
+ This dataset does not have predefined splits (train/test/validation). Users can create splits as needed for their specific tasks.