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
configure model card metadata
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/g3ar5QfHHQBjtPaE5mwu1.mp4
README.md
CHANGED
|
@@ -1,3 +1,32 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
datasets:
|
| 4 |
+
- Intel/misinformation-guard
|
| 5 |
+
- ucsbnlp/liar
|
| 6 |
+
language:
|
| 7 |
+
- en
|
| 8 |
+
- tw
|
| 9 |
+
- fr
|
| 10 |
+
- ar
|
| 11 |
+
- ha
|
| 12 |
+
- es
|
| 13 |
+
metrics:
|
| 14 |
+
- accuracy
|
| 15 |
+
- recall
|
| 16 |
+
- precision
|
| 17 |
+
- f1
|
| 18 |
+
base_model:
|
| 19 |
+
- FacebookAI/roberta-base
|
| 20 |
+
- meta-llama/Llama-3.2-3B-Instruct
|
| 21 |
+
- google/gemma-4-31B-it
|
| 22 |
+
- sentence-transformers/all-MiniLM-L6-v2
|
| 23 |
+
new_version: deepseek-ai/DeepSeek-V4-Pro
|
| 24 |
+
pipeline_tag: text-classification
|
| 25 |
+
library_name: transformers
|
| 26 |
+
tags:
|
| 27 |
+
- fact checking
|
| 28 |
+
- misinformation
|
| 29 |
+
- digital literacy
|
| 30 |
+
- fake news
|
| 31 |
+
- media literacy
|
| 32 |
+
---
|