Update README.md
Browse files
README.md
CHANGED
@@ -12,36 +12,11 @@ libraries:
|
|
12 |
# Model Name
|
13 |
|
14 |
## Model Description
|
|
|
|
|
|
|
15 |
|
16 |
-
|
|
|
17 |
|
18 |
-
|
19 |
-
|
20 |
-
Detail the architecture of the model, including the type of model (e.g., BERT, GPT) and any significant modifications or configurations applied to the original architecture.
|
21 |
-
|
22 |
-
## Training Data
|
23 |
-
|
24 |
-
Describe the dataset(s) used for training the model. Mention the source of the data, the data type, and how it was processed or transformed before training. Discuss the size of the training set and any balancing techniques used if applicable.
|
25 |
-
|
26 |
-
## Intended Use
|
27 |
-
|
28 |
-
Explain the intended use cases for the model. Describe the target audience and the scenarios in which the model is expected to perform well. This could include educational tools, tutoring systems, or other learning assistance platforms.
|
29 |
-
|
30 |
-
## Limitations and Biases
|
31 |
-
|
32 |
-
Acknowledge any limitations or biases in the model. Discuss aspects such as data limitations, potential biases in training data, or expected areas where the model may not perform optimally.
|
33 |
-
|
34 |
-
## How to Use
|
35 |
-
|
36 |
-
Provide examples of how to use the model with the Hugging Face Transformers library. Include code snippets for initializing the model, loading it, and making predictions.
|
37 |
-
|
38 |
-
```python
|
39 |
-
from transformers import AutoModelForCausalLM, AutoTokenizer
|
40 |
-
|
41 |
-
tokenizer = AutoTokenizer.from_pretrained("your-model-name")
|
42 |
-
model = AutoModelForCausalLM.from_pretrained("your-model-name")
|
43 |
-
|
44 |
-
text = "Your prompt here"
|
45 |
-
encoded_input = tokenizer(text, return_tensors='pt')
|
46 |
-
output = model.generate(**encoded_input)
|
47 |
-
print(tokenizer.decode(output[0], skip_special_tokens=True))
|
|
|
12 |
# Model Name
|
13 |
|
14 |
## Model Description
|
15 |
+
The model is a roberta-base fine-tuned on various social media dataset and Wikipedia dataset.
|
16 |
+
The model takes a news article and predicts if it is true or fake.
|
17 |
+
The format of the input should be:
|
18 |
|
19 |
+
```
|
20 |
+
<title> TITLE HERE <content> CONTENT HERE <end>
|
21 |
|
22 |
+
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|