VerificadoProfesional
commited on
Commit
•
5836f2a
1
Parent(s):
bafe3a7
Update README.md
Browse files
README.md
CHANGED
@@ -15,6 +15,13 @@ This BERT-based text classifier was developed as a thesis project for the Comput
|
|
15 |
The model is designed to detect fake news in Spanish and was fine-tuned on the *dccuchile/bert-base-spanish-wwm-uncased* model using a specific set of hyperparameters.
|
16 |
It was trained on a dataset containing 125,000 Spanish news articles collected from various regions, both true and false.
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
## Model Details
|
19 |
* **Base Mode**: dccuchile/bert-base-spanish-wwm-uncased
|
20 |
* **Hyperparameters**:
|
@@ -50,8 +57,8 @@ pip install transformers torch
|
|
50 |
```python
|
51 |
from transformers import BertForSequenceClassification, BertTokenizer
|
52 |
|
53 |
-
model = BertForSequenceClassification.from_pretrained("VerificadoProfesional/SaBERT-Spanish-Fake-News
|
54 |
-
tokenizer = BertTokenizer.from_pretrained("VerificadoProfesional/SaBERT-Spanish-Fake-News
|
55 |
```
|
56 |
|
57 |
### Predict Function
|
|
|
15 |
The model is designed to detect fake news in Spanish and was fine-tuned on the *dccuchile/bert-base-spanish-wwm-uncased* model using a specific set of hyperparameters.
|
16 |
It was trained on a dataset containing 125,000 Spanish news articles collected from various regions, both true and false.
|
17 |
|
18 |
+
## Team Members
|
19 |
+
- **[Azul Fuentes](https://github.com/azu26)**
|
20 |
+
- **[Dante Reinaudo](https://github.com/DanteReinaudo)**
|
21 |
+
- **[Lucía Pardo](https://github.com/luciaPardo)**
|
22 |
+
- **[Roberto Iskandarani](https://github.com/Robert-Iskandarani)**
|
23 |
+
|
24 |
+
|
25 |
## Model Details
|
26 |
* **Base Mode**: dccuchile/bert-base-spanish-wwm-uncased
|
27 |
* **Hyperparameters**:
|
|
|
57 |
```python
|
58 |
from transformers import BertForSequenceClassification, BertTokenizer
|
59 |
|
60 |
+
model = BertForSequenceClassification.from_pretrained("VerificadoProfesional/SaBERT-Spanish-Fake-News")
|
61 |
+
tokenizer = BertTokenizer.from_pretrained("VerificadoProfesional/SaBERT-Spanish-Fake-News")
|
62 |
```
|
63 |
|
64 |
### Predict Function
|