haes95 commited on
Commit
52e8f7b
1 Parent(s): 75326aa

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -13
README.md CHANGED
@@ -15,21 +15,20 @@ pipeline_tag: text-generation
15
 
16
 
17
  ## Model Details
18
- hes make
19
 
20
- ### Model Description
21
 
22
- <!-- Provide a longer summary of what this model is. -->
23
 
24
- This is the model card of a 🤗 transformers model that has been pushed on the Hub. This model card has been automatically generated.
25
 
26
- - **Developed by:** [More Information Needed]
27
- - **Funded by [optional]:** [More Information Needed]
28
- - **Shared by [optional]:** [More Information Needed]
29
- - **Model type:** [More Information Needed]
30
- - **Language(s) (NLP):** [More Information Needed]
31
- - **License:** [More Information Needed]
32
- - **Finetuned from model [optional]:** [More Information Needed]
 
33
 
34
  ### Model Sources [optional]
35
 
@@ -43,9 +42,13 @@ This is the model card of a 🤗 transformers model that has been pushed on the
43
 
44
  <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
45
 
46
- ### Direct Use
 
 
47
 
48
- <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
 
 
49
 
50
  [More Information Needed]
51
 
 
15
 
16
 
17
  ## Model Details
 
18
 
19
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/65f3ee48b1a907c6aa6d8f06/nGbRfMQEfAW_aDwisKn9T.png)
20
 
 
21
 
22
+ ## Model Description
23
 
24
+ <!-- Provide a longer summary of what this model is/does. -->
25
+ POLAR is a Korean LLM developed by Plateer's AI-lab. It was inspired by Upstage's SOLAR. We will continue to evolve this model and hope to contribute to the Korean LLM ecosystem.
26
+
27
+ - **Developed by:** AI-Lab of Plateer(Woomun Jung, Eunsoo Ha, MinYoung Joo, Seongjun Son)
28
+ - **Model type:** Language model
29
+ - **Language(s) (NLP):** ko
30
+ - **License:** apache-2.0
31
+ - Parent Model: x2bee/POLAR-14B-v0.2
32
 
33
  ### Model Sources [optional]
34
 
 
42
 
43
  <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
44
 
45
+ ## Direct Use
46
+ ```
47
+ from transformers import AutoTokenizer, AutoModelForCausalLM
48
 
49
+ tokenizer = AutoTokenizer.from_pretrained("x2bee/PLOAR-7B-DPO-V1.0")
50
+ model = AutoModelForCausalLM.from_pretrained("x2bee/PLOAR-7B-DPO-V1.0")
51
+ ```
52
 
53
  [More Information Needed]
54