File size: 525 Bytes
703dd3b
 
07da6db
 
 
 
9eb1992
 
4e528a3
9eb1992
 
4e528a3
 
 
 
 
 
 
 
 
 
 
 
7844a6d
 
 
 
4e528a3
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
---
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("model_name")
model = AutoModel.from_pretrained("model_name")
tokenizer = AutoTokenizer.from_pretrained("model_name")
```