Arjun24420 commited on
Commit
b654f44
·
1 Parent(s): e30b608

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -0
README.md ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ ---
5
+ ### Model Description
6
+ This model is a Binary classification model trained on the Liar Dataset using the BERT (bert-base-uncased) architecture. The primary task is to classify news articles into different categories, making it suitable for fake news detection.
7
+ BERT (Bidirectional Encoder Representations from Transformers) is a transformer-based model known for its effectiveness in natural language processing tasks.
8
+
9
+ The model classifies the input text into 2 classes, True (Real News) or False (Fake News).
10
+
11
+ The original labels include 'true', 'mostly-true', 'half-true', 'barely-true', 'false', and 'pants-fire'.
12
+ In this custom mapping, statements labeled as 'true', 'mostly-true', and 'half-true' are all categorized as 'true', while 'barely-true', 'false', and 'pants-fire' are grouped under the 'false' category.
13
+ This mapping simplifies the classification task into a binary problem, aiming to distinguish between truthful and non-truthful statements.
14
+
15
+ Bias: The model may inherit biases present in the training data, and it's important to be aware of potential biases in the predictions.