MikkoLipsanen
commited on
Commit
•
30b9b83
1
Parent(s):
373cfeb
Update README.md
Browse files
README.md
CHANGED
@@ -50,7 +50,8 @@ model_checkpoint = "Kansallisarkisto/finbert-ner"
|
|
50 |
token_classifier = pipeline(
|
51 |
"token-classification", model=model_checkpoint, aggregation_strategy="simple"
|
52 |
)
|
53 |
-
token_classifier("'Helsingistä tuli Suomen suuriruhtinaskunnan pääkaupunki vuonna 1812.")
|
|
|
54 |
```
|
55 |
|
56 |
## Training data
|
|
|
50 |
token_classifier = pipeline(
|
51 |
"token-classification", model=model_checkpoint, aggregation_strategy="simple"
|
52 |
)
|
53 |
+
predictions = token_classifier("'Helsingistä tuli Suomen suuriruhtinaskunnan pääkaupunki vuonna 1812.")
|
54 |
+
print(predictions)
|
55 |
```
|
56 |
|
57 |
## Training data
|