Update README.md
Browse files
README.md
CHANGED
@@ -15,21 +15,20 @@ pipeline_tag: text-generation
|
|
15 |
|
16 |
|
17 |
## Model Details
|
18 |
-
hes make
|
19 |
|
20 |
-
|
21 |
|
22 |
-
<!-- Provide a longer summary of what this model is. -->
|
23 |
|
24 |
-
|
25 |
|
26 |
-
|
27 |
-
-
|
28 |
-
|
29 |
-
- **
|
30 |
-
- **
|
31 |
-
- **
|
32 |
-
- **
|
|
|
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 |
-
|
|
|
|
|
47 |
|
48 |
-
|
|
|
|
|
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 |
|