Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
datasets:
|
3 |
+
- PJMixers/classtest
|
4 |
+
pipeline_tag: text-classification
|
5 |
+
---
|
6 |
+
### Example Inputs
|
7 |
+
This would be expecting to return `1`, meaning it is a chosen/good `AI_MESSAGE`.
|
8 |
+
```
|
9 |
+
USER_MESSAGE: You are a {Genre} author. Your task is to write {Genre} stories in a vivid and intriguing language. Answer with "..." if you acknowledge. Don't wrtie anthing yet
|
10 |
+
|
11 |
+
Genre = Thriller
|
12 |
+
AI_MESSAGE: ...
|
13 |
+
```
|
14 |
+
|
15 |
+
This would be expecting to return `0`, meaning it is a rejected/bad `AI_MESSAGE`.
|
16 |
+
```
|
17 |
+
USER_MESSAGE: You are a {Genre} author. Your task is to write {Genre} stories in a vivid and intriguing language. Answer with "..." if you acknowledge. Don't wrtie anthing yet
|
18 |
+
|
19 |
+
Genre = Thriller
|
20 |
+
AI_MESSAGE: ...
|
21 |
+
|
22 |
+
I acknowledge that I am to write Thriller stories in a vivid and intriguing language. I'm ready to create a gripping and suspenseful narrative that will keep readers on the edge of their seats. Let the thrilling adventure begin!
|
23 |
+
```
|