Update README.md
Browse files
README.md
CHANGED
|
@@ -1,4 +1,23 @@
|
|
| 1 |
---
|
| 2 |
widget:
|
| 3 |
- text: "आप उनकी गणना नहीं कर सकते."
|
| 4 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
widget:
|
| 3 |
- text: "आप उनकी गणना नहीं कर सकते."
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# mt5 for identifying CP in Hindi or English sentence
|
| 7 |
+
This is a fine-tuned mt5 for identifying Complex Predicate in hindi or english sentence.Given a hindi sentence as input it displays the CP present as output.If no CP is present in the sentence it displays the token none.
|
| 8 |
+
|
| 9 |
+
## How to use
|
| 10 |
+
You can use this model directly with a Text2Text generation pipeline:
|
| 11 |
+
Install transformers library,if not already done by : !pip install transformers
|
| 12 |
+
'''python
|
| 13 |
+
>>>from transformers import pipeline
|
| 14 |
+
>>>cp_identifier=pipeline("text2text-generation",model="manashxml/identify_CP_hin-eng")
|
| 15 |
+
>>>cp_identifier("आप उनकी गणना नहीं कर सकते.")
|
| 16 |
+
[{'generated_text': 'गणना नहीं कर सकते'}]
|
| 17 |
+
|
| 18 |
+
### Team Members
|
| 19 |
+
- Manash Mishra
|
| 20 |
+
- Aditya Parashar
|
| 21 |
+
- Riya Tomar
|
| 22 |
+
- Dr. Soma Paul(iiit hyderabad)
|
| 23 |
+
- Dr. Sukhada(IIT BHU)
|