Views
No views yet
microsoft/deberta-v3-large. It was initially trained on a large, diverse corpus of over 50,000 news articles to become a "Fake News Specialist."v2 version addresses a key limitation of the original model: a bias towards classifying simple, factual statements as FAKE. The original model (Arko007/fact-check1-v1) was so specialized in detecting the patterns of sensationalist news that it became overly suspicious of clean, encyclopedic facts.allenai/scifact dataset.mrisdal/fake-news dataset.1from transformers import pipeline
2
3classifier = pipeline("text-classification", model="Arko007/fact-check1-v2-calibrated")
4
5# Example 1: Simple Fact
6text1 = "The sun rises in the east."
7print(classifier(text1))
8# Expected output: [{'label': 'REAL', 'score': ...}]
9
10# Example 2: Fake News
11text2 = "BREAKING: Scientists confirm lizards are secretly running the government."
12print(classifier(text2))
13# Expected output: [{'label': 'FAKE', 'score': ...}]