Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- te
|
| 4 |
+
- en
|
| 5 |
+
tags:
|
| 6 |
+
- telugu
|
| 7 |
+
- NER
|
| 8 |
+
- TeluguNER
|
| 9 |
+
---
|
| 10 |
+
## Direct Use
|
| 11 |
+
|
| 12 |
+
The model is a language model. The model can be used for token classification, a natural language understanding task in which a label is assigned to some tokens in a text.
|
| 13 |
+
|
| 14 |
+
## Downstream Use
|
| 15 |
+
|
| 16 |
+
Potential downstream use cases include Named Entity Recognition (NER) and Part-of-Speech (PoS) tagging. To learn more about token classification and other potential downstream use cases, see the Hugging Face [token classification docs](https://huggingface.co/tasks/token-classification).
|
| 17 |
+
|
| 18 |
+
## Out-of-Scope Use
|
| 19 |
+
|
| 20 |
+
The model should not be used to intentionally create hostile or alienating environments for people.
|
| 21 |
+
|
| 22 |
+
# Bias, Risks, and Limitations
|
| 23 |
+
|
| 24 |
+
**CONTENT WARNING: Readers should be made aware that language generated by this model may be disturbing or offensive to some and may propagate historical and current stereotypes.**
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
```python
|
| 28 |
+
>>> from transformers import pipeline
|
| 29 |
+
>>> tokenizer = AutoTokenizer.from_pretrained("Pavan27/NER_Telugu_01")
|
| 30 |
+
>>> model = AutoModelForTokenClassification.from_pretrained("Pavan27/NER_Telugu_01")
|
| 31 |
+
>>> classifier = pipeline("ner", model=model, tokenizer=tokenizer, grouped_entities = True)
|
| 32 |
+
>>> classifier("వెస్టిండీస్పై పోర్ట్ ఆఫ్ స్పెయిన్ వేదిక జరుగుతున్న రెండో టెస్టు తొలి ఇన్నింగ్స్లో విరాట్ కోహ్లీ 121 పరుగులతో విదేశాల్లో సెంచరీ కరువును తీర్చుకున్నాడు.")
|
| 33 |
+
|
| 34 |
+
|
| 35 |
+
[{'entity_group': 'LOC',
|
| 36 |
+
'score': 0.9999062,
|
| 37 |
+
'word': 'వెస్టిండీస్',
|
| 38 |
+
'start': 0,
|
| 39 |
+
'end': 11},
|
| 40 |
+
{'entity_group': 'LOC',
|
| 41 |
+
'score': 0.9998613,
|
| 42 |
+
'word': 'పోర్ట్ ఆఫ్ స్పెయిన్',
|
| 43 |
+
'start': 15,
|
| 44 |
+
'end': 34},
|
| 45 |
+
{'entity_group': 'PER',
|
| 46 |
+
'score': 0.99996054,
|
| 47 |
+
'word': 'విరాట్ కోహ్లీ',
|
| 48 |
+
'start': 85,
|
| 49 |
+
'end': 98}]
|
| 50 |
+
```
|
| 51 |
+
|
| 52 |
+
## Recommendations
|
| 53 |
+
|
| 54 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model.
|