Update README.md
Browse files
README.md
CHANGED
|
@@ -146,8 +146,9 @@ entities = decode_predictions(text, predictions, word_ids)
|
|
| 146 |
# Mostrar solo entidades relevantes
|
| 147 |
for word, label in entities:
|
| 148 |
if label != "O":
|
| 149 |
-
print(f"{word:35} {label}")
|
| 150 |
|
|
|
|
| 151 |
|
| 152 |
## Training and evaluation data
|
| 153 |
|
|
|
|
| 146 |
# Mostrar solo entidades relevantes
|
| 147 |
for word, label in entities:
|
| 148 |
if label != "O":
|
| 149 |
+
print(f"{word:35} {label}")
|
| 150 |
|
| 151 |
+
```
|
| 152 |
|
| 153 |
## Training and evaluation data
|
| 154 |
|