File size: 664 Bytes
5577cdf 97aec21 d6e69a1 b1073bb 5577cdf 97aec21 5577cdf 97aec21 5577cdf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
---
tags:
- autotrain
- text-generation
widget:
- text: 'hi kaise hai app '
license: mit
datasets:
- smangrul/hinglish_self_instruct_v0
language:
- hi
library_name: peft
---
# Model Trained Using AutoTrain
This model was trained using AutoTrain. For more information, please visit [AutoTrain](https://hf.co/docs/autotrain).
# Usage
```python
from peft import PeftModel, PeftConfig
from transformers import AutoModelForCausalLM
config = PeftConfig.from_pretrained("shuvom/OpenHathi-7B-FT-v0.1_SI")
model = AutoModelForCausalLM.from_pretrained("sarvamai/OpenHathi-7B-Hi-v0.1-Base")
model = PeftModel.from_pretrained(model, "shuvom/OpenHathi-7B-FT-v0.1_SI")
``` |