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 files
README.md
CHANGED
|
@@ -1,32 +1,32 @@
|
|
| 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 |
-
-
|
| 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
|
| 28 |
- misinformation
|
| 29 |
-
- digital
|
| 30 |
-
- fake
|
| 31 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
---
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
base_model: facebook/roberta-base
|
| 4 |
+
library_name: transformers
|
| 5 |
datasets:
|
| 6 |
- Intel/misinformation-guard
|
| 7 |
- ucsbnlp/liar
|
| 8 |
language:
|
| 9 |
- en
|
|
|
|
| 10 |
- fr
|
| 11 |
+
- es
|
| 12 |
- ar
|
| 13 |
- ha
|
| 14 |
+
- tw
|
| 15 |
metrics:
|
| 16 |
- accuracy
|
| 17 |
- recall
|
| 18 |
- precision
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
pipeline_tag: text-classification
|
|
|
|
| 20 |
tags:
|
| 21 |
+
- fact-checking
|
| 22 |
- misinformation
|
| 23 |
+
- digital-literacy
|
| 24 |
+
- fake-news-detection
|
| 25 |
+
- nlp
|
| 26 |
+
- news
|
| 27 |
+
widget:
|
| 28 |
+
- text: "The government has announced a new tax on all social media users."
|
| 29 |
+
example_title: "Policy News"
|
| 30 |
+
- text: "Scientists have discovered a planet made entirely of diamond."
|
| 31 |
+
example_title: "Science Claim"
|
| 32 |
---
|