Update README.md
Browse files
README.md
CHANGED
@@ -21,3 +21,30 @@ base_model: unsloth/Qwen2-7B
|
|
21 |
This qwen2 model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
|
22 |
|
23 |
[<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
This qwen2 model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
|
22 |
|
23 |
[<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
|
24 |
+
|
25 |
+
## prompt format
|
26 |
+
|
27 |
+
```
|
28 |
+
<instruction>
|
29 |
+
taskタグにおいて提供された文章が、次に示す条件にあてはまる文章かどうかを判断し、文章の品質を「低品質」または「高品質」で答えてください。
|
30 |
+
条件:
|
31 |
+
1. 繰り返しの無い文章であること。
|
32 |
+
2. 文法的に誤りの多い文章
|
33 |
+
3. 意味の通らない、または支離滅裂な文章
|
34 |
+
4. 差別的表現、暴力的表現、わいせつな内容
|
35 |
+
</instruction>
|
36 |
+
<task>
|
37 |
+
{target text}
|
38 |
+
</task>
|
39 |
+
<answer>
|
40 |
+
```
|
41 |
+
|
42 |
+
## outputs
|
43 |
+
```
|
44 |
+
低品質
|
45 |
+
</answer>
|
46 |
+
```
|
47 |
+
```
|
48 |
+
高品質
|
49 |
+
</answer>
|
50 |
+
```
|