kyujinpy/Korean-OpenOrca-13B

Model

4

stars

9

commits

1

linked in READMEs

Oct 19, 2023

updated

endpoints_compatible
llama
pytorch
text-generation
text-generation-inference
transformers

README

(주)미디어그룹사람과숲과 (주)마커의 LLM 연구 컨소시엄에서 개발된 모델입니다
The license is cc-by-nc-sa-4.0.

🐳Korean-OpenOrca-13B🐳

img

Model Details

Model Developers Kyujin Han (kyujinpy)

Input Models input text only.

Output Models generate text only.

Model Architecture
Korean-OpenOrca-13B is an auto-regressive language model based on the LLaMA2 transformer architecture.

Repo Link
Github Korean-OpenOrca: 🐳Korean-OpenOrca🐳

Base Model hyunseoki/ko-en-llama2-13b

Training Dataset
I use OpenOrca-KO.
Using DeepL, translate about OpenOrca.

I use A100 GPU 40GB and COLAB, when trianing.

Model Benchmark

KO-LLM leaderboard

ModelAverageKo-ARCKo-HellaSwagKo-MMLUKo-TruthfulQAKo-CommonGen V2
Korean-OpenOrca-13B(ours🐳)47.8543.0954.1340.2445.2256.57
KoT-Platypus2-13B49.5543.6953.0542.2943.3465.38
KO-Platypus2-13B47.9044.2054.3142.4744.4154.11
hyunseoki/ko-en-llama2-13b46.6842.1554.2338.9040.7457.39
MarkrAI/kyujin-CoTy-platypus-ko-12.8b46.4434.9849.1125.6837.5984.86

Compare with Top 4 SOTA models. (update: 10/09)

Implementation Code

### KO-Platypus
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch

repo = "kyujinpy/Korean-OpenOrca-13B"
OpenOrca = AutoModelForCausalLM.from_pretrained(
        repo,
        return_dict=True,
        torch_dtype=torch.float16,
        device_map='auto'
)
OpenOrca_tokenizer = AutoTokenizer.from_pretrained(repo)

Contributors

kyujinpy

9 commits

kyujinpy/Korean-OpenOrca-13B

Model

4

stars

9

commits

1

linked in READMEs

Oct 19, 2023

updated

endpoints_compatible
llama
pytorch
text-generation
text-generation-inference
transformers

README

(주)미디어그룹사람과숲과 (주)마커의 LLM 연구 컨소시엄에서 개발된 모델입니다
The license is cc-by-nc-sa-4.0.

🐳Korean-OpenOrca-13B🐳

img

Model Details

Model Developers Kyujin Han (kyujinpy)

Input Models input text only.

Output Models generate text only.

Model Architecture
Korean-OpenOrca-13B is an auto-regressive language model based on the LLaMA2 transformer architecture.

Repo Link
Github Korean-OpenOrca: 🐳Korean-OpenOrca🐳

Base Model hyunseoki/ko-en-llama2-13b

Training Dataset
I use OpenOrca-KO.
Using DeepL, translate about OpenOrca.

I use A100 GPU 40GB and COLAB, when trianing.

Model Benchmark

KO-LLM leaderboard

ModelAverageKo-ARCKo-HellaSwagKo-MMLUKo-TruthfulQAKo-CommonGen V2
Korean-OpenOrca-13B(ours🐳)47.8543.0954.1340.2445.2256.57
KoT-Platypus2-13B49.5543.6953.0542.2943.3465.38
KO-Platypus2-13B47.9044.2054.3142.4744.4154.11
hyunseoki/ko-en-llama2-13b46.6842.1554.2338.9040.7457.39
MarkrAI/kyujin-CoTy-platypus-ko-12.8b46.4434.9849.1125.6837.5984.86

Compare with Top 4 SOTA models. (update: 10/09)

Implementation Code

### KO-Platypus
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch

repo = "kyujinpy/Korean-OpenOrca-13B"
OpenOrca = AutoModelForCausalLM.from_pretrained(
        repo,
        return_dict=True,
        torch_dtype=torch.float16,
        device_map='auto'
)
OpenOrca_tokenizer = AutoTokenizer.from_pretrained(repo)

Contributors

kyujinpy

9 commits