Update README.md
Browse files
README.md
CHANGED
@@ -40,10 +40,10 @@ model = SequenceTagger.load("qanastek/pos-french")
|
|
40 |
|
41 |
sentence = Sentence("George Washington est allé à Washington")
|
42 |
|
43 |
-
#
|
44 |
model.predict(sentence)
|
45 |
|
46 |
-
#
|
47 |
print(sentence.to_tagged_string())
|
48 |
```
|
49 |
|
|
|
40 |
|
41 |
sentence = Sentence("George Washington est allé à Washington")
|
42 |
|
43 |
+
# Predict tags
|
44 |
model.predict(sentence)
|
45 |
|
46 |
+
# Print predicted pos tags
|
47 |
print(sentence.to_tagged_string())
|
48 |
```
|
49 |
|