dmayhem93 commited on
Commit
01b36af
1 Parent(s): fedf659

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -0
README.md ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Model Card for Top2ADC_v0
2
+
3
+ Based on GPT-J, this model attemps to model a conversation by rejecting second highest scoring utterances and then selecting the highest scoring utterances.
4
+
5
+ Reddit comment chains are used to model this, with the first instance being the second highest scoring reply to the current comment,
6
+ which we will reject and go to the highest 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
+ ```
12
+ ExampleUser
13
+ Example Title
14
+ Example Comment <BACKGROUND_INDEX_TOKEN> Other_User
15
+ Edit: Second <REJECTED_UTTERANCE> First_User
16
+ First! <SELECTED_UTTERANCE> Other_User
17
+ 😭 <SELECTED_UTTERANCE>
18
+ ```