Views
No views yet
cc-by-nc-sa-4.0.slerp merge to smoothly blend the gradients of the base models to create it.| Model | Average | Ko-ARC | Ko-HellaSwag | Ko-MMLU | Ko-TruthfulQA | Ko-CommonGen V2 |
|---|---|---|---|---|---|---|
| COKAL_merged_test-v1-13B🐻❄️ | 52.72 | 51.45 | 60.55 | 44.8 | 49.05 | 57.73 |
| COKAL-DPO-13b-v2🐻❄️ | 52.69 | 54.95 | 63.02 | 43.98 | 51.67 | 49.82 |
| COKAL-DPO_test-v2-13b🐻❄️ | 52.67 | 55.63 | 63.5 | 43.49 | 51.5 | 49.23 |
| hyeogi/Yi-6b-dpo-v0.2 | 52.63 | 41.72 | 52.96 | 46.69 | 52.38 | 69.42 |
| DopeorNope-maestro-v2-DPO-13b🐻❄️ | 49.42 | 45.14 | 56.69 | 41.37 | 42.26 | 61.63 |
1
2from transformers import AutoModelForCausalLM, AutoTokenizer
3import torch
4
5repo = "DopeorNope/COKAL_merged_test-v1-13B"
6OpenOrca = AutoModelForCausalLM.from_pretrained(
7 repo,
8 return_dict=True,
9 torch_dtype=torch.float16,
10 device_map='auto'
11)
12OpenOrca_tokenizer = AutoTokenizer.from_pretrained(repo)1
2prompt= f"아래는 문제를 설명하는 지시사항과, 구체적인 답변을 방식을 요구하는 입력이 함께 있는 문장입니다. 이 요청에 대해 적절하게 답변해주세요.\n\n### 지시사항:\n{instruction}\n\n### 입력:\n{input}\n\n### 답변:\n"
3
4prompt_no_input = f"아래는 문제를 설명하는 지시사항입니다. 이 요청에 대해 적절하게 답변해주세요.\n\n### 지시사항:\n{instruction}\n\n### 답변:\n"
5
6