Text Generation
Transformers
Safetensors
Korean
llama
text-generation-inference
Inference Endpoints
File size: 1,035 Bytes
231e126
 
 
 
 
 
 
 
 
 
 
1909454
231e126
 
 
 
 
 
 
 
 
 
1909454
231e126
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1909454
231e126
1909454
231e126
 
 
 
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
license: cc-by-nc-4.0
datasets:
- kyujinpy/KOR-OpenOrca-Platypus-v3
- beomi/KoAlpaca-v1.1a
- maywell/ko_wikidata_QA
language:
- ko
base_model: beomi/Yi-Ko-6B
---

# Yi-Ko-6B-Instruct-v1.1_

## Model Details

### Base Model
[beomi/Yi-Ko-6B](https://huggingface.co./beomi/Yi-Ko-6B)

### Training Dataset
1. [kyujinpy/KOR-OpenOrca-Platypus-v3](https://huggingface.co./datasets/kyujinpy/KOR-OpenOrca-Platypus-v3) πŸ™‡
2. [beomi/KoAlpaca-v1.1a](https://huggingface.co./datasets/beomi/KoAlpaca-v1.1a) πŸ™‡
3. [maywell/ko_wikidata_QA](https://huggingface.co./datasets/maywell/ko_wikidata_QA) πŸ™‡
4. AIHub 데이터 ν™œμš©

## Instruction Format
```python
### User:
{instruction}

### Assistant:
{response}
```

## Loading the Model
```python
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer

tokenizer = AutoTokenizer.from_pretrained("wkshin89/Yi-Ko-6B-Instruct-v1.1_")
model = AutoModelForCausalLM.from_pretrained(
    "wkshin89/Yi-Ko-6B-Instruct-v1.1_",
    device_map="auto",
    torch_dtype=torch.bfloat16,
)
```