Skip to content

Commit fd1c768

Browse files
author
Nilan Saha
committed
Commit #3 for 0.0.1 - Minor README fixes
1 parent ce11917 commit fd1c768

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ The model only needs to be downloaded the first time the tagger is used or after
2424

2525
```python
2626
import convex
27-
convex.download()
28-
tagger = convex.PosTagger()
29-
tagger("Let's see how this new tagger works.")
27+
convex.download() # Download all the necessary models
28+
tagger = convex.PosTagger() # Initialize the Pos Tagging Pipeline
29+
tagger("Let's see how this new tagger works.") # Tag a sentence
3030
```
3131

3232
Output -

0 commit comments

Comments
 (0)