Kevin99z commited on
Commit
17afaa0
·
1 Parent(s): 0a98b99

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -1
README.md CHANGED
@@ -178,9 +178,22 @@ An example of 'test' looks as follows.
178
  ```
179
 
180
 
 
 
 
 
 
 
 
181
 
 
 
 
 
182
 
183
-
 
 
184
 
185
  ## Dataset Creation
186
 
 
178
  ```
179
 
180
 
181
+ ### Data Fields
182
+ #### SA
183
+ - movieId: the movie's Id in the [MovieLens](https://grouplens.org/datasets/movielens/latest/) dataset.
184
+ - movieName: the movie's name.
185
+ - messages: a list of string. The conversation messages related to the movie. Note that one conversation can contain mutiple movies. The conversation messages are repeated for each movie as a sample.
186
+ - senders: a list of 1 or -1. It has the same length of messages. Each element indicates the message at the same index is from the initiatorWorker (with 1) or the respondentWorkerId (with -1).
187
+ - form: a list generated by: [init_q[movieId]["suggested"], init_q[movieId]["seen"], init_q[movieId]["liked"], resp_q[movieId]["suggested"], resp_q[movieId]["seen"], resp_q[movieId]["liked"]. init_q is the initiator questions in the conversation. resp_q is the respondent questions in the conversation.
188
 
189
+ #### rec
190
+ - movieIds: a list of movie ids in a conversation.
191
+ - messages: a list of string. see config SA for detail.
192
+ - senders: a list of 1 or -1. see config SA.
193
 
194
+ #### autorec:
195
+ - movieIds: a list of movie ids in a conversation.
196
+ - ratings: a list of 0 or 1. It has the same length as movieIds. Each element indicates the inititator's "liked" value for the movie.
197
 
198
  ## Dataset Creation
199