leejaymin commited on
Commit
40f7857
·
verified ·
1 Parent(s): a7e691a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +50 -0
README.md CHANGED
@@ -7,3 +7,53 @@ library_name: transformers
7
  pipeline_tag: text-generation
8
  license: mit
9
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  pipeline_tag: text-generation
8
  license: mit
9
  ---
10
+ # **etri-ones-solar**
11
+
12
+ ## Model Details
13
+ **Model Developers**
14
+ - the model is fine-tuned by open instruction dataset
15
+
16
+ **Model Architecture**
17
+ - this model is an auto-regressive language model based on the solar transformer architecture.
18
+
19
+ **Base Model**
20
+ - solar https://huggingface.co/upstage/SOLAR-10.7B-v1.0
21
+
22
+ **Training Dataset**
23
+ -
24
+
25
+ ---
26
+ # Model comparisons1
27
+ > comming soon
28
+
29
+ | Model | Average | Ko-ARC | Ko-HellaSwag | Ko-MMLU | Ko-TruthfulQA | Ko-CommonGen V2 |
30
+ | --- | --- | --- | --- | --- | --- | --- |
31
+ | **[...your_model_name...]** | NaN | NaN | NaN | NaN | NaN | NaN |
32
+
33
+ ---
34
+ # Model comparisons2
35
+ > AI-Harness evaluation; [link](https://github.com/Beomi/ko-lm-evaluation-harness)
36
+
37
+ | Model | Copa | Copa | HellaSwag | HellaSwag | BoolQ | BoolQ | Sentineg | Sentineg |
38
+ | --- | --- | --- | --- | --- | --- | --- | --- | --- |
39
+ | | 0-shot | 5-shot | 0-shot | 5-shot | 0-shot | 5-shot | 0-shot | 5-shot |
40
+ | **[...your_model_name...]** | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
41
+
42
+ ---
43
+ # Implementation Code
44
+ ```python
45
+ ### KO-Platypus
46
+ from transformers import AutoModelForCausalLM, AutoTokenizer
47
+ import torch
48
+
49
+ repo = "[...your_model_repo...]"
50
+ OpenOrca = AutoModelForCausalLM.from_pretrained(
51
+ repo,
52
+ return_dict=True,
53
+ torch_dtype=torch.float16,
54
+ device_map='auto'
55
+ )
56
+ OpenOrca_tokenizer = AutoTokenizer.from_pretrained(repo)
57
+ ```
58
+
59
+ ---