Update README.md
Browse files
README.md
CHANGED
@@ -3,6 +3,18 @@ license: apache-2.0
|
|
3 |
---
|
4 |
### Deprem NER Training Results
|
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
Threshold: 0.1
|
7 |
|
8 |
```
|
|
|
3 |
---
|
4 |
### Deprem NER Training Results
|
5 |
|
6 |
+
```
|
7 |
+
training_args = TrainingArguments(
|
8 |
+
output_dir="./output",
|
9 |
+
evaluation_strategy="epoch",
|
10 |
+
per_device_train_batch_size=32,
|
11 |
+
per_device_eval_batch_size=32,
|
12 |
+
weight_decay=0.01,
|
13 |
+
report_to=None,
|
14 |
+
num_train_epochs=4
|
15 |
+
)
|
16 |
+
```
|
17 |
+
|
18 |
Threshold: 0.1
|
19 |
|
20 |
```
|