Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,31 @@
|
|
1 |
---
|
2 |
license: mit
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
+
pipeline_tag: text-classification
|
4 |
---
|
5 |
+
|
6 |
+
# Roberta-Fact-Check Model
|
7 |
+
|
8 |
+
The Roberta-Fact-Check Model is a deep learning model that uses the Roberta architecture for text classification. It is designed to classify claims as either supported or refuted based on the provided evidence.
|
9 |
+
|
10 |
+
## Model Training
|
11 |
+
|
12 |
+
The model was trained using the Adam optimizer with a learning rate of 2-4e, epsilon of 1-8, and weight decay of 2-8e. The training dataset mainly consisted of the FEVER and Hover datasets, along with a small sample of manually created data.
|
13 |
+
|
14 |
+
## Input and Output
|
15 |
+
|
16 |
+
The model takes a claim and corresponding evidence as input and returns a label indicating whether the evidence supports or refutes the claim. The two possible labels are:
|
17 |
+
|
18 |
+
- 0: Supports
|
19 |
+
- 1: Refutes
|
20 |
+
|
21 |
+
## Usage
|
22 |
+
|
23 |
+
To use the Roberta-Fact-Check Model, you can simply pass in a claim and evidence as input to the model and receive a label indicating whether the evidence supports or refutes the claim. The model can be integrated into various applications for fact-checking and misinformation detection.
|
24 |
+
|
25 |
+
## Acknowledgements
|
26 |
+
|
27 |
+
This model was developed using the Hugging Face transformers library and trained on the FEVER and Hover datasets. We would like to thank the developers of these datasets for their contributions to the community.
|
28 |
+
|
29 |
+
## Disclaimer
|
30 |
+
|
31 |
+
While the Roberta-Fact-Check Model has been trained on a large dataset and can provide accurate results in many cases, it may not always provide correct results. Users should always exercise caution when making decisions based on the output of any machine learning model.
|