Commit
路
77de6a9
1
Parent(s):
56da2c8
Update README.md
Browse files
README.md
CHANGED
@@ -13,23 +13,7 @@ metrics:
|
|
13 |
- recall
|
14 |
- f1
|
15 |
widget:
|
16 |
-
- text:
|
17 |
-
de turno del Consejo Europeo , recibi贸 hoy al ministro del Interior de Colombia
|
18 |
-
, Hugo de la Calle , enviado especial del presidente de su pa铆s , Andr茅s Pastrana
|
19 |
-
.
|
20 |
-
- text: Los consejeros de la Presidencia , Gaspar Zarr铆as , de Justicia , Carmen Hermos铆n
|
21 |
-
, y de Asuntos Sociales , Isa铆as P茅rez Salda帽a , dar谩n comienzo ma帽ana a los turnos
|
22 |
-
de comparecencias de los miembros del Gobierno andaluz en el Parlamento auton贸mico
|
23 |
-
para informar de las l铆neas de actuaci贸n de sus departamentos .
|
24 |
-
- text: '( SV2147 ) PP : PROBLEMAS INTERNOS PSOE INTERFIEREN EN POLITICA DE LA JUNTA
|
25 |
-
C贸rdoba ( EFE ) .'
|
26 |
-
- text: Cuando vino a Soria , en febrero de 1998 , para sustituir al entonces destituido
|
27 |
-
Antonio G贸mez , estaba dirigiendo al Badajoz B en tercera divisi贸n y consigui贸
|
28 |
-
con el Numancia la permanencia en la 煤ltima jornada frente al H茅rcules .
|
29 |
-
- text: El ministro ecuatoriano de Defensa , Hugo Unda , asegur贸 hoy que las Fuerzas
|
30 |
-
Armadas respetar谩n la decisi贸n del Parlamento sobre la amnist铆a para los involucrados
|
31 |
-
en la asonada golpista del pasado 21 de enero , cuando fue derrocado el presidente
|
32 |
-
Jamil Mahuad .
|
33 |
pipeline_tag: token-classification
|
34 |
base_model: xlm-roberta-large
|
35 |
model-index:
|
@@ -76,6 +60,7 @@ This is a [SpanMarker](https://github.com/tomaarsen/SpanMarkerNER) model that ca
|
|
76 |
- **Thesis:** [SpanMarker For Named Entity Recognition](https://raw.githubusercontent.com/tomaarsen/SpanMarkerNER/main/thesis.pdf)
|
77 |
|
78 |
### Model Labels
|
|
|
79 |
| Label | Examples |
|
80 |
|:------|:------------------------------------------------------------------|
|
81 |
| LOC | "Melbourne", "Australia", "Victoria" |
|
@@ -93,31 +78,7 @@ from span_marker import SpanMarkerModel
|
|
93 |
# Download from the 馃 Hub
|
94 |
model = SpanMarkerModel.from_pretrained("alvarobartt/span-marker-xlm-roberta-large-conll-2002-es")
|
95 |
# Run inference
|
96 |
-
entities = model.predict("
|
97 |
-
```
|
98 |
-
|
99 |
-
### Downstream Use
|
100 |
-
You can finetune this model on your own dataset.
|
101 |
-
|
102 |
-
<details><summary>Click to expand</summary>
|
103 |
-
|
104 |
-
```python
|
105 |
-
from span_marker import SpanMarkerModel, Trainer
|
106 |
-
|
107 |
-
# Download from the 馃 Hub
|
108 |
-
model = SpanMarkerModel.from_pretrained("alvarobartt/span-marker-xlm-roberta-large-conll-2002-es")
|
109 |
-
|
110 |
-
# Specify a Dataset with "tokens" and "ner_tag" columns
|
111 |
-
dataset = load_dataset("conll2003") # For example CoNLL2003
|
112 |
-
|
113 |
-
# Initialize a Trainer using the pretrained model & dataset
|
114 |
-
trainer = Trainer(
|
115 |
-
model=model,
|
116 |
-
train_dataset=dataset["train"],
|
117 |
-
eval_dataset=dataset["validation"],
|
118 |
-
)
|
119 |
-
trainer.train()
|
120 |
-
trainer.save_model("alvarobartt/span-marker-xlm-roberta-large-conll-2002-es-finetuned")
|
121 |
```
|
122 |
</details>
|
123 |
|
|
|
13 |
- recall
|
14 |
- f1
|
15 |
widget:
|
16 |
+
- text: George Washington fue a Washington.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
pipeline_tag: token-classification
|
18 |
base_model: xlm-roberta-large
|
19 |
model-index:
|
|
|
60 |
- **Thesis:** [SpanMarker For Named Entity Recognition](https://raw.githubusercontent.com/tomaarsen/SpanMarkerNER/main/thesis.pdf)
|
61 |
|
62 |
### Model Labels
|
63 |
+
|
64 |
| Label | Examples |
|
65 |
|:------|:------------------------------------------------------------------|
|
66 |
| LOC | "Melbourne", "Australia", "Victoria" |
|
|
|
78 |
# Download from the 馃 Hub
|
79 |
model = SpanMarkerModel.from_pretrained("alvarobartt/span-marker-xlm-roberta-large-conll-2002-es")
|
80 |
# Run inference
|
81 |
+
entities = model.predict("George Washington fue a Washington.")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
```
|
83 |
</details>
|
84 |
|