Skip to content

Commit

Permalink
[Docs] 📜 Updated Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
iamv1n authored May 21, 2023
1 parent b259ed5 commit b1b7d22
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ cd pos-tagger
```bash
pip install -r requirements.txt
```
<!--

4. To use the pos_tagger module globally Install the module
```bash
pip install -e pos_tagger
Expand All @@ -35,15 +35,14 @@ pip install -e pos_tagger
## Usage
Import the pos_tagger module and use the tag_sentence function to tag a sentence:
```python
from postagger import tag_sentence
from pos_tagger import tag_sentence

sentence = "This is a sample sentence."
tags = tag_sentence(sentence)
print(tags)
```
The output will be a list of (word, tag) tuples representing the POS tags for each word in the sentence.
-->


## License
This project is licensed under the MIT License. See the LICENSE file for details.
This project is licensed under the MIT License. See the [LICENSE](https://github.com/iamv1n/pos-tagger/blob/main/LICENSE.md) file for details.

0 comments on commit b1b7d22

Please sign in to comment.