Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Model Card for RandomWalkADC_v0
|
| 2 |
+
|
| 3 |
+
Based on GPT-J, this model attemps to model a conversation by rejecting utterances to switch to a different reply.
|
| 4 |
+
|
| 5 |
+
Reddit comment chains are used to model this, with the first instance being the highest scoring reply to the current comment,
|
| 6 |
+
which we will randomly reject and go to the next highest comment. This repeats until we either run out of comments, or accept the current comment.
|
| 7 |
+
|
| 8 |
+
We sample the reply chain in this manner until we do not have any more replies to the current comment.
|
| 9 |
+
|
| 10 |
+
The input to the model will look something like this:
|
| 11 |
+
```ExampleUser
|
| 12 |
+
Example Title
|
| 13 |
+
Example Comment <BACKGROUND_INDEX_TOKEN> Other_User
|
| 14 |
+
Edit: Second <REJECTED_UTTERANCE> First_User
|
| 15 |
+
First! <SELECTED_UTTERANCE> Other_User
|
| 16 |
+
😭 <SELECTED_UTTERANCE>
|
| 17 |
+
```
|