Update README.md
Browse files
README.md
CHANGED
|
@@ -50,22 +50,9 @@ Fertility Rate (FR) measures the average tokens generated per word. A lower FR i
|
|
| 50 |
* **Morphological Stemmer:** Rule-based suffix stripping tailored for Sindhi noun and verb forms.
|
| 51 |
|
| 52 |
---
|
| 53 |
-
|
| 54 |
## ⚖️ License
|
| 55 |
Licensed under the **MIT License**.
|
| 56 |
-
|
| 57 |
-
## 💻 Quick Start
|
| 58 |
-
```python
|
| 59 |
-
from sindhinltk import SindhiNLP
|
| 60 |
-
|
| 61 |
-
nlp = SindhiNLP()
|
| 62 |
-
text = "سنڌي ٻولي تمام مٺي ۽ خوبصورت آهي"
|
| 63 |
-
result = nlp.process(test_text)
|
| 64 |
-
|
| 65 |
-
print(result['tokens']) # ['سنڌي', 'ٻولي', 'تمام', 'مٺي', '۽', 'خوبصورت', 'آهي']
|
| 66 |
-
print(result['sentiment']) # {'label': 'Positive', 'confidence': '54.11%'}
|
| 67 |
-
|
| 68 |
-
## 👤 About the Author
|
| 69 |
|
| 70 |
**Aakash Meghwar** is a Computational Linguist specializing in the digital evolution of South Asian languages.
|
| 71 |
|
|
@@ -91,3 +78,15 @@ I am actively seeking **PhD opportunities** and **Research Collaborations** in:
|
|
| 91 |
**Contact**: [aakashmeghwar01@gmail.com](mailto:aakashmeghwar01@gmail.com) | [LinkedIn](https://www.linkedin.com/in/aakashmeghwar/)
|
| 92 |
|
| 93 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 50 |
* **Morphological Stemmer:** Rule-based suffix stripping tailored for Sindhi noun and verb forms.
|
| 51 |
|
| 52 |
---
|
|
|
|
| 53 |
## ⚖️ License
|
| 54 |
Licensed under the **MIT License**.
|
| 55 |
+
## 👤 About the Author
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 56 |
|
| 57 |
**Aakash Meghwar** is a Computational Linguist specializing in the digital evolution of South Asian languages.
|
| 58 |
|
|
|
|
| 78 |
**Contact**: [aakashmeghwar01@gmail.com](mailto:aakashmeghwar01@gmail.com) | [LinkedIn](https://www.linkedin.com/in/aakashmeghwar/)
|
| 79 |
|
| 80 |
---
|
| 81 |
+
## 💻 Quick Start
|
| 82 |
+
```python
|
| 83 |
+
from sindhinltk import SindhiNLP
|
| 84 |
+
|
| 85 |
+
nlp = SindhiNLP()
|
| 86 |
+
text = "سنڌي ٻولي تمام مٺي ۽ خوبصورت آهي"
|
| 87 |
+
result = nlp.process(test_text)
|
| 88 |
+
|
| 89 |
+
print(result['tokens']) # ['سنڌي', 'ٻولي', 'تمام', 'مٺي', '۽', 'خوبصورت', 'آهي']
|
| 90 |
+
print(result['sentiment']) # {'label': 'Positive', 'confidence': '54.11%'}
|
| 91 |
+
|
| 92 |
+
|