Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,42 @@
|
|
1 |
-
---
|
2 |
-
license: apache-2.0
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
- ko
|
6 |
+
- ja
|
7 |
+
- zh
|
8 |
+
- es
|
9 |
+
---
|
10 |
+
|
11 |
+
> [!TIP]
|
12 |
+
> Have Fun :>
|
13 |
+
|
14 |
+
# Qwen2-7B-Multilingual-RP
|
15 |
+
|
16 |
+
## Model Info
|
17 |
+
|
18 |
+
| Context Length | Parameter | Prompt Template | isErp |
|
19 |
+
| --- | --- | --- | --- |
|
20 |
+
| 32k(32768) | 7B | ChatML | Partly |
|
21 |
+
|
22 |
+
## Prompt Template
|
23 |
+
|
24 |
+
```
|
25 |
+
{% for message in messages %}{{'<|im_start|>' + message['role'] + '\n' + message['content']}}{% if not loop.last or (loop.last and message['role'] != 'assistant') %}{{'<|im_end|>\n'}}{% endif %}{% endfor %}{% if add_generation_prompt and messages[-1]['role'] != 'assistant' %}{{ '<|im_start|>assistant\n' }}{% endif %}
|
26 |
+
```
|
27 |
+
|
28 |
+
## License
|
29 |
+
|
30 |
+
Copyright 2024, Wanot AI, Inc
|
31 |
+
|
32 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
33 |
+
you may not use this file except in compliance with the License.
|
34 |
+
You may obtain a copy of the License at
|
35 |
+
|
36 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
37 |
+
|
38 |
+
Unless required by applicable law or agreed to in writing, software
|
39 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
40 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
41 |
+
See the License for the specific language governing permissions and
|
42 |
+
limitations under the License.
|