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-generation", 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
- Local Apps Settings
- vLLM
How to use ARISCOT/Digital_Literacy_Fact_Checker with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ARISCOT/Digital_Literacy_Fact_Checker" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ARISCOT/Digital_Literacy_Fact_Checker", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/ARISCOT/Digital_Literacy_Fact_Checker
- SGLang
How to use ARISCOT/Digital_Literacy_Fact_Checker with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "ARISCOT/Digital_Literacy_Fact_Checker" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ARISCOT/Digital_Literacy_Fact_Checker", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "ARISCOT/Digital_Literacy_Fact_Checker" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ARISCOT/Digital_Literacy_Fact_Checker", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use ARISCOT/Digital_Literacy_Fact_Checker with Docker Model Runner:
docker model run hf.co/ARISCOT/Digital_Literacy_Fact_Checker
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
|
@@ -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 |
+
---
|