Instructions to use Arjun24420/BERT-FakeNews-Classification with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Arjun24420/BERT-FakeNews-Classification with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Arjun24420/BERT-FakeNews-Classification")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("Arjun24420/BERT-FakeNews-Classification") model = AutoModelForSequenceClassification.from_pretrained("Arjun24420/BERT-FakeNews-Classification") - Notebooks
- Google Colab
- Kaggle
Commit ·
c4cec93
1
Parent(s): 89ca950
Update Readme.md
Browse files
README.md
CHANGED
|
@@ -1,4 +1,15 @@
|
|
| 1 |
---
|
| 2 |
language:
|
| 3 |
- en
|
| 4 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
language:
|
| 3 |
- en
|
| 4 |
+
---
|
| 5 |
+
### Model Description
|
| 6 |
+
This model is a multiclass classification model trained on the Liar Dataset using the BERT (bert-base-uncased) architecture.
|
| 7 |
+
The primary task is to classify news articles into different categories, making it suitable for fake news detection. \
|
| 8 |
+
BERT (Bidirectional Encoder Representations from Transformers) is a transformer-based model known for its effectiveness in natural language processing tasks.
|
| 9 |
+
|
| 10 |
+
The model classifies the input text into one of 6 target classes.
|
| 11 |
+
|
| 12 |
+
Bias: The model may inherit biases present in the training data, and it's important to be aware of potential biases in the predictions.
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
|