declan101 commited on
Commit
24f9246
·
verified ·
1 Parent(s): bb2cb9e

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +45 -0
README.md ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - text-classification
5
+ language:
6
+ - en
7
+ tags:
8
+ - fake-news
9
+ - real-news
10
+ - binary-classification
11
+ - transformers
12
+ pretty_name: Fake New News Detection Dataset
13
+ size_categories:
14
+ - 10K<n<100K
15
+ ---
16
+ # NewsFineTuning
17
+
18
+ A combined dataset of fake and true news articles for binary classification.
19
+
20
+ ## Files
21
+
22
+ - `train.csv` – 70% training data
23
+ - `val.csv` – 15% validation data
24
+ - `test.csv` – 15% test data
25
+
26
+ Each CSV contains:
27
+ - `title` — Article title
28
+ - `text` — Full article content
29
+ - `subject` — Topic category
30
+ - `date` — Published date
31
+ - `label` — `0` = Real, `1` = Fake
32
+
33
+ ## Task
34
+
35
+ This dataset is ideal for:
36
+ - Fake news detection
37
+ - Binary classification
38
+ - Fine-tuning transformers (e.g., DistilBERT)
39
+
40
+ ## Load with Datasets
41
+
42
+ ```python
43
+ from datasets import load_dataset
44
+
45
+ dataset = load_dataset("declan101/NewsFineTuning")