Instructions to use LingoIITGN/COMI-LINGUA-POS with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use LingoIITGN/COMI-LINGUA-POS with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("CohereForAI/aya-expanse-8b") model = PeftModel.from_pretrained(base_model, "LingoIITGN/COMI-LINGUA-POS") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -45,8 +45,7 @@ Output: [{'मीराबाई': 'PROPN'}, {'चानू': 'PROPN'}, {'ने
|
|
| 45 |
```
|
| 46 |
## Training Details
|
| 47 |
### Training Data
|
| 48 |
-
[COMI-LINGUA Dataset Card](https://huggingface.co/datasets/LingoIITGN/COMI-LINGUA)
|
| 49 |
-
|
| 50 |
### Training Procedure
|
| 51 |
#### Preprocessing
|
| 52 |
Tokenized with base tokenizer; instruction templates + few-shot examples. Filtered: ≥5 tokens, no hate/non-Hinglish, focused on code-mixed content.
|
|
|
|
| 45 |
```
|
| 46 |
## Training Details
|
| 47 |
### Training Data
|
| 48 |
+
[COMI-LINGUA Dataset Card](https://huggingface.co/datasets/LingoIITGN/COMI-LINGUA).
|
|
|
|
| 49 |
### Training Procedure
|
| 50 |
#### Preprocessing
|
| 51 |
Tokenized with base tokenizer; instruction templates + few-shot examples. Filtered: ≥5 tokens, no hate/non-Hinglish, focused on code-mixed content.
|