Added ViT Model
Browse files
README.md
CHANGED
|
@@ -13,17 +13,24 @@ datasets:
|
|
| 13 |
model_name: BertAndDeberta
|
| 14 |
---
|
| 15 |
|
| 16 |
-
# BertAndDeberta — Transformer Ensemble for Fake News Detection
|
| 17 |
|
| 18 |
-
This repository hosts a
|
| 19 |
|
| 20 |
-
## Model Details
|
| 21 |
|
|
|
|
| 22 |
- **Architecture**: Ensemble of BERT-base and DeBERTa-base
|
| 23 |
- **Task**: Binary Text Classification (`REAL` vs `FAKE`)
|
| 24 |
- **Training Framework**: PyTorch using 🤗 Transformers
|
| 25 |
- **License**: MIT
|
| 26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
## Dataset
|
| 28 |
|
| 29 |
The dataset is a custom collection combining:
|
|
|
|
| 13 |
model_name: BertAndDeberta
|
| 14 |
---
|
| 15 |
|
| 16 |
+
# BertAndDeberta + ViT — Transformer Ensemble for Fake News Detection
|
| 17 |
|
| 18 |
+
This repository hosts a multimodal fake news detection system that combines **BERT**, **DeBERTa**, and **ViT** models. The *BERT* and *DeBERTa* models handle textual data to classify news as either real or fake, while the *ViT* model is trained separately to detect AI-generated vs real images, helping assess the authenticity of visual content.
|
| 19 |
|
|
|
|
| 20 |
|
| 21 |
+
## Text Models — Fake News Detection
|
| 22 |
- **Architecture**: Ensemble of BERT-base and DeBERTa-base
|
| 23 |
- **Task**: Binary Text Classification (`REAL` vs `FAKE`)
|
| 24 |
- **Training Framework**: PyTorch using 🤗 Transformers
|
| 25 |
- **License**: MIT
|
| 26 |
|
| 27 |
+
|
| 28 |
+
## Vision Model — AI-Generated Image Detection
|
| 29 |
+
- **Architecture**: Vision Transformer (ViT-base, vit-base-patch16-224)
|
| 30 |
+
- **Task**: Binary Image Classification ('REAL' vs 'AI-GENERATED')
|
| 31 |
+
- **Training Framework**: TensorFlow/Keras or PyTorch using Transformers
|
| 32 |
+
- **License**: MIT
|
| 33 |
+
|
| 34 |
## Dataset
|
| 35 |
|
| 36 |
The dataset is a custom collection combining:
|