|
--- |
|
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") |
|
``` |