We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce11917 commit fd1c768Copy full SHA for fd1c768
README.md
@@ -24,9 +24,9 @@ The model only needs to be downloaded the first time the tagger is used or after
24
25
```python
26
import convex
27
-convex.download()
28
-tagger = convex.PosTagger()
29
-tagger("Let's see how this new tagger works.")
+convex.download() # Download all the necessary models
+tagger = convex.PosTagger() # Initialize the Pos Tagging Pipeline
+tagger("Let's see how this new tagger works.") # Tag a sentence
30
```
31
32
Output -
0 commit comments