Instructions to use ARISCOT/Digital_Literacy_Fact_Checker with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ARISCOT/Digital_Literacy_Fact_Checker with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="ARISCOT/Digital_Literacy_Fact_Checker")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("ARISCOT/Digital_Literacy_Fact_Checker", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse filesInitialized model card with core metadata for digital literacy and fact-checking. Configured the text-classification pipeline and added relevant tags (misinformation, media literacy) to improve discoverability. Defined transformers as the primary library and linked the base model architecture.

https://cdn-uploads.huggingface.co/production/uploads/69ce92e3974332e3e056410c/jPLotq5jqh06eJdXVk5K1.mp4
README.md
CHANGED
|
@@ -1,14 +1,38 @@
|
|
| 1 |
---
|
| 2 |
-
language:
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
tags:
|
| 5 |
- fact-checking
|
| 6 |
- social-media
|
| 7 |
- politics
|
| 8 |
- health
|
| 9 |
- science
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
---
|
| 11 |
|
| 12 |
# Digital Literacy Fact Checker
|
| 13 |
This model is designed to classify misinformation across social media,
|
| 14 |
-
politics, health, science, religion, and agriculture.
|
|
|
|
| 1 |
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
- fr
|
| 5 |
+
- tw
|
| 6 |
+
- ha
|
| 7 |
+
- es
|
| 8 |
+
license: apache-2.0
|
| 9 |
tags:
|
| 10 |
- fact-checking
|
| 11 |
- social-media
|
| 12 |
- politics
|
| 13 |
- health
|
| 14 |
- science
|
| 15 |
+
datasets:
|
| 16 |
+
- mteb/FEVER_test_top_250_only_w_correct-v2
|
| 17 |
+
- ucsbnlp/liar
|
| 18 |
+
- NunoBatista/PHEME-Misinformation-Graphs
|
| 19 |
+
- dwadden/healthver_entailment
|
| 20 |
+
- rabuahmad/climatecheck
|
| 21 |
+
- talab-ai/pi5-agricultural-iot-32day
|
| 22 |
+
- RASSAISAID/finqa-deepseek-prompts
|
| 23 |
+
metrics:
|
| 24 |
+
- accuracy
|
| 25 |
+
- recall
|
| 26 |
+
- f1
|
| 27 |
+
- precision
|
| 28 |
+
base_model:
|
| 29 |
+
- FacebookAI/roberta-base
|
| 30 |
+
- meta-llama/Llama-3.2-1B-Instruct
|
| 31 |
+
new_version: deepseek-ai/DeepSeek-V4-Pro-Base
|
| 32 |
+
pipeline_tag: text-classification
|
| 33 |
+
library_name: transformers
|
| 34 |
---
|
| 35 |
|
| 36 |
# Digital Literacy Fact Checker
|
| 37 |
This model is designed to classify misinformation across social media,
|
| 38 |
+
politics, health, science, religion, and agriculture.
|