Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
@@ -1,10 +1,30 @@
|
|
1 |
---
|
2 |
-
title: TrueCheck
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
6 |
-
sdk:
|
|
|
|
|
7 |
pinned: false
|
|
|
8 |
---
|
9 |
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
title: TrueCheck - Fake News Detection
|
3 |
+
emoji: 📰
|
4 |
+
colorFrom: red
|
5 |
+
colorTo: blue
|
6 |
+
sdk: streamlit
|
7 |
+
sdk_version: 1.28.1
|
8 |
+
app_file: app.py
|
9 |
pinned: false
|
10 |
+
license: mit
|
11 |
---
|
12 |
|
13 |
+
# TrueCheck - Fake News Detection System
|
14 |
+
|
15 |
+
This application uses a hybrid deep learning model (BERT + BiLSTM + Attention) to detect fake news articles.
|
16 |
+
|
17 |
+
## Features
|
18 |
+
- Real-time fake news detection
|
19 |
+
- Confidence scoring
|
20 |
+
- Attention visualization
|
21 |
+
- Interactive web interface
|
22 |
+
|
23 |
+
## Model Architecture
|
24 |
+
The model combines:
|
25 |
+
- BERT for contextual embeddings
|
26 |
+
- BiLSTM for sequence modeling
|
27 |
+
- Attention mechanism for interpretability
|
28 |
+
|
29 |
+
## Usage
|
30 |
+
Simply paste a news article into the text area and click "Analyze" to get predictions with confidence scores and attention visualizations.
|