Improve dataset card: Add description, paper and code links, and sample usage

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +29 -13
README.md CHANGED
@@ -1,21 +1,24 @@
1
  ---
 
 
 
 
 
 
 
 
 
2
  configs:
3
  - config_name: politifact
4
  data_files:
5
- - "politifact/raw_text/*.parquet"
6
  default: true
7
  - config_name: gossipcop
8
  data_files:
9
- - "gossipcop/raw_text/*.parquet"
10
  - config_name: fakeddit
11
  data_files:
12
- - "fakeddit/raw_text/*.parquet"
13
- license: cc-by-nc-sa-4.0
14
- task_categories:
15
- - graph-ml
16
- - text-classification
17
- language:
18
- - en
19
  tags:
20
  - social
21
  - news
@@ -24,7 +27,20 @@ tags:
24
  - misinformation
25
  - classification
26
  - detection
27
- pretty_name: TAGFN
28
- size_categories:
29
- - 1M<n<10M
30
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
+ license: cc-by-nc-sa-4.0
5
+ size_categories:
6
+ - 1M<n<10M
7
+ task_categories:
8
+ - graph-ml
9
+ - text-classification
10
+ pretty_name: TAGFN
11
  configs:
12
  - config_name: politifact
13
  data_files:
14
+ - politifact/raw_text/*.parquet
15
  default: true
16
  - config_name: gossipcop
17
  data_files:
18
+ - gossipcop/raw_text/*.parquet
19
  - config_name: fakeddit
20
  data_files:
21
+ - fakeddit/raw_text/*.parquet
 
 
 
 
 
 
22
  tags:
23
  - social
24
  - news
 
27
  - misinformation
28
  - classification
29
  - detection
30
+ ---
31
+
32
+ # TAGFN: A Text-Attributed Graph Dataset for Fake News Detection in the Age of LLMs
33
+
34
+ [Paper](https://huggingface.co/papers/2511.21624) | [Code](https://github.com/kayzliu/tagfn)
35
+
36
+ TAGFN is a large-scale, real-world text-attributed graph dataset specifically designed for outlier detection, particularly in the context of fake news detection. It addresses the scarcity of large-scale, realistic, and well-annotated datasets for evaluating both traditional and Large Language Model (LLM)-based graph outlier detection methods. This dataset also facilitates the fine-tuning of LLMs for developing misinformation detection capabilities, serving as a valuable resource for advancing robust graph-based outlier detection and trustworthy AI.
37
+
38
+ ### Sample Usage
39
+
40
+ To reproduce experiments, navigate to the repository and run:
41
+
42
+ ```bash
43
+ bash run.sh
44
+ ```
45
+
46
+ To host an LLM server locally with `vllm`, refer to the commands provided in `vllm.sh`.