hongzoh's picture
Update README.md
4e528a3 verified
|
raw
history blame
No virus
539 Bytes
---
license: apache-2.0
datasets:
- garage-bAInd/Open-Platypus
language:
- en
---
## Base Model
- 01-ai/Yi-6B
## Train Dataset
- garage-bAInd/Open-Platypus
- format
```
"<s>[INST]" + "instruction" + " [/INST] " + 'output' + " </s>"
```
## Usage
```
from transformers import AutoConfig, AutoModel, AutoTokenizer
model_name = 'hongzoh/Yi-6B_Open-Platypus-v2'
config = AutoConfig.from_pretrained("your model name")
model = AutoModel.from_pretrained("your model name")
tokenizer = AutoTokenizer.from_pretrained("your model name")
```