tktung commited on
Commit
5381a6e
·
verified ·
1 Parent(s): 8423d69

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +47 -4
README.md CHANGED
@@ -1,8 +1,12 @@
1
  ---
2
  dataset_info:
3
  features:
 
 
4
  - name: user_name
5
  dtype: string
 
 
6
  - name: post_message
7
  dtype: string
8
  - name: timestamp_post
@@ -15,10 +19,6 @@ dataset_info:
15
  dtype: string
16
  - name: label
17
  dtype: int64
18
- - name: image
19
- dtype: image
20
- - name: id
21
- dtype: int64
22
  splits:
23
  - name: train
24
  num_bytes: 662801454.408
@@ -31,3 +31,46 @@ configs:
31
  - split: train
32
  path: data/train-*
33
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  dataset_info:
3
  features:
4
+ - name: id
5
+ dtype: int64
6
  - name: user_name
7
  dtype: string
8
+ - name: image
9
+ dtype: image
10
  - name: post_message
11
  dtype: string
12
  - name: timestamp_post
 
19
  dtype: string
20
  - name: label
21
  dtype: int64
 
 
 
 
22
  splits:
23
  - name: train
24
  num_bytes: 662801454.408
 
31
  - split: train
32
  path: data/train-*
33
  ---
34
+
35
+ # ReINTEL: A Multimodal Data Challenge for Responsible Information Identification on Social Network Sites
36
+
37
+ We are running a competition based on this dataset at: https://aihub.ml/competitions/795. Top 3 solutions will be invited to submit technical report. The challenge will be concluded with a result paper, to be included in the proceeding of the [Reliable AI workshop at ACML](https://workshop2024.reliable-ai.org/).
38
+
39
+
40
+ Please check our paper for more details: https://aclanthology.org/2020.vlsp-1.16.pdf
41
+ >This paper reports on the ReINTEL Shared Task for Responsible Information Identification on social network sites, which is hosted at the seventh annual workshop on Vietnamese Language and Speech Processing (VLSP 2020). Given a piece of news with respective textual, visual content and metadata, participants are required to classify whether the news is `reliable' or `unreliable'. In order to generate a fair benchmark, we introduce a novel human-annotated dataset of over 10,000 news collected from a social network in Vietnam. All models will be evaluated in terms of AUC-ROC score, a typical evaluation metric for classification. The competition was run on the Codalab platform. Within two months, the challenge has attracted over 60 participants and recorded nearly 1,000 submission entries.
42
+
43
+ ## Load Dataset
44
+
45
+ Load the dataset using the ```datasets``` library in ```python```:
46
+
47
+ ```
48
+ from datasets import load_dataset
49
+
50
+ train_dataset = load_dataset("ReliableAI/ReINTEL", split="train") # with ground-truth labels
51
+ test_dataset = load_dataset("ReliableAI/ReINTEL", split="test") # without ground-truth labels
52
+ ```
53
+
54
+ ## Data Format
55
+
56
+ Each instance includes 6 main attributes with/without a binary target label as follows:
57
+
58
+ id: unique id for a news post on SNSs
59
+
60
+ user_name: the anonymized id of the owner
61
+
62
+ post_message: the text content of the news
63
+
64
+ timestamp_post: the time when the news is posted
65
+
66
+ image: image of type ```PIL.JpegImagePlugin.JpegImageFile``` associated with the news
67
+
68
+ num_like_post: the number of likes that the news is received
69
+
70
+ num_comment_post: the number of comment that the news is received
71
+
72
+ num_share_post: the number of shares that the news is received
73
+
74
+ label: a manually annotated label which marks the news as potentially unreliable
75
+ - 1: unreliable
76
+ - 0: reliable