kyujinpy commited on
Commit
9e67111
1 Parent(s): 069a1dd

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +46 -0
README.md CHANGED
@@ -1,3 +1,49 @@
1
  ---
 
 
 
 
 
 
2
  license: cc-by-nc-sa-4.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - ko
4
+ datasets:
5
+ - kyujinpy/KOR-Orca-Platypus-kiwi
6
+ library_name: transformers
7
+ pipeline_tag: text-generation
8
  license: cc-by-nc-sa-4.0
9
  ---
10
+ **(주)미디어그룹사람과숲과 (주)마커의 LLM 연구 컨소시엄에서 개발된 모델입니다**
11
+ **The license is `cc-by-nc-sa-4.0`.**
12
+
13
+ # **KOR-Orca-Platypus-kiwi🥝**
14
+
15
+ ## Model Details
16
+
17
+ **Model Developers** Kyujin Han (kyujinpy)
18
+
19
+ **Model Architecture**
20
+ ko-platypus-kiwi-13B is an auto-regressive language model based on the LLaMA2 transformer architecture.
21
+
22
+ **Base Model** [hyunseoki/ko-en-llama2-13b](https://huggingface.co/hyunseoki/ko-en-llama2-13b)
23
+
24
+ **Training Dataset**
25
+ I used [kyujinpy/KOR-Orca-Platypus-kiwi](https://huggingface.co/datasets/kyujinpy/KOR-Orca-Platypus-kiwi).
26
+
27
+
28
+ # Model comparisons
29
+ | Model | Average |Ko-ARC | Ko-HellaSwag | Ko-MMLU | Ko-TruthfulQA | Ko-CommonGen V2 |
30
+ | --- | --- | --- | --- | --- | --- | --- |
31
+ | **ko-platypus-kiwi-13B🥝** | 48.97 | 42.41 | 54.29 | 41.98 | 40.05 | 66.12 |
32
+
33
+ # Implementation Code
34
+ ```python
35
+ ### KO-Platypus
36
+ from transformers import AutoModelForCausalLM, AutoTokenizer
37
+ import torch
38
+
39
+ repo = "kyujinpy/ko-platypus-kiwi-13B"
40
+ OpenOrca = AutoModelForCausalLM.from_pretrained(
41
+ repo,
42
+ return_dict=True,
43
+ torch_dtype=torch.float16,
44
+ device_map='auto'
45
+ )
46
+ OpenOrca_tokenizer = AutoTokenizer.from_pretrained(repo)
47
+ ```
48
+
49
+ ---