ZhankuiHe commited on
Commit
9e99e25
1 Parent(s): 3f28ce1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +38 -11
README.md CHANGED
@@ -63,19 +63,45 @@ Since the raw text is quite noisy and processing is not perfect, we do observe s
63
  ```
64
  0 # -> It is the first turn in this conversation. Typically, for conversations from Reddit, the number of turns is usually not very large.
65
  ```
 
 
 
 
66
  - `is_seeker (bool)`: Whether the speaker at the current turn is the seeker for recommendation or not. For example
67
  ```
68
  true # -> It is the seeker (seeker starts a movie requesting conversation on Reddit).
69
  ```
70
  - `utc_time (int64)`: The UTC timestamp when this conversation turn happend. For example:
71
  ```
72
- 1641234238 # -> Try datetime.fromtimestamp(1641234238)
73
  ```
74
  - `upvotes (int64)`: The number of upvotes from other reddit users (it is `null` if this post is the first post in this thread, because upvotes only work for replies.). For example:
75
  ```
76
  6 # -> 6 upvotes from other Reddit users.
77
  ```
78
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
79
  ### Data Splits
80
 
81
  We hold the last 20% data (in chronological order according to the created time of the conversation) as testing set. Others can be treated as training samples. We provided a suggested split to split Train into Train and Validation but you are free to try your splits.
@@ -91,7 +117,16 @@ We hold the last 20% data (in chronological order according to the created time
91
  ### Citation Information
92
 
93
 
94
- Please cite these two papers if you used this raw data, thanks!
 
 
 
 
 
 
 
 
 
95
 
96
  ```bib
97
  @inproceedings{baumgartner2020pushshift,
@@ -104,14 +139,6 @@ Please cite these two papers if you used this raw data, thanks!
104
  }
105
  ```
106
 
107
- ```bib
108
- @inproceedings{he23large,
109
- title = Large language models as zero-shot conversational recommenders",
110
- author = "Zhankui He and Zhouhang Xie and Rahul Jha and Harald Steck and Dawen Liang and Yesu Feng and Bodhisattwa Majumder and Nathan Kallus and Julian McAuley",
111
- year = "2023",
112
- booktitle = "CIKM"
113
- }
114
- ```
115
 
116
  Please contact [Zhankui He](https://aaronheee.github.io) if you have any questions or suggestions.
117
 
 
63
  ```
64
  0 # -> It is the first turn in this conversation. Typically, for conversations from Reddit, the number of turns is usually not very large.
65
  ```
66
+ - `user_id (string)`: The unique user id. For example:
67
+ ```
68
+ "t2_fweij" # -> user id
69
+ ```
70
  - `is_seeker (bool)`: Whether the speaker at the current turn is the seeker for recommendation or not. For example
71
  ```
72
  true # -> It is the seeker (seeker starts a movie requesting conversation on Reddit).
73
  ```
74
  - `utc_time (int64)`: The UTC timestamp when this conversation turn happend. For example:
75
  ```
76
+ 1641234238 # -> Try `datetime.fromtimestamp(1641234238)`
77
  ```
78
  - `upvotes (int64)`: The number of upvotes from other reddit users (it is `null` if this post is the first post in this thread, because upvotes only work for replies.). For example:
79
  ```
80
  6 # -> 6 upvotes from other Reddit users.
81
  ```
82
+ - `processed (string)`: The role and text at this conversation turn (processed version). For example:
83
+ ```
84
+ "['USER', 'We decided on tt3501632. They love it so far— very funny!']" # -> [ROLE, Processed string] after `eval()`, where we can match `tt3501632` to real item name using `id2name.json`.
85
+ ```
86
+ - `raw (int64)`: The role and text at conversation turn (raw-text version). For example:
87
+ ```
88
+ "['USER', 'We decided on Thor: Ragnarok. They love it so far— very funny!']" # -> [ROLE, Raw string] after `eval()`, where it is convinient to form it as "USER: We decided on Thor: Ragnarok. They love it so far— very funny!".
89
+ ```
90
+ - `context_processed (string)`: The role and text pairs as the historical conversation context (processed version). For example:
91
+ ```
92
+ "[['USER', 'It’s summer break ... Some of the films we have watched (and they enjoyed) in the past are tt3544112, tt1441952, tt1672078, tt0482571, tt0445590, tt0477348...'], ['SYSTEM', "I'm not big on super hero movies, but even I loved the tt2015381 movies ..."]]"
93
+ # -> [[ROLE, Processed string], [ROLE, Processed string], ...] after `eval()`, where we can match `tt******` to real item name using `id2name.json`.
94
+ ```
95
+ - `context_raw (string)`: The role and text pairs as the historical conversation context (raw version). For example:
96
+ ```
97
+ "[['USER', 'It’s summer break ... Some of the films we have watched (and they enjoyed) in the past are Sing Street, Salmon Fishing in the Yemen, The Life of Pi, The Prestige, LOTR Trilogy, No Country for Old Men...'], ['SYSTEM', "I'm not big on super hero movies, but even I loved the guardians of the Galaxy movies ..."]]"
98
+ # -> [[ROLE, Processed string], [ROLE, Processed string], ...] after `eval()`, where we can form "USER: ...\n SYSTEM: ...\n USER:..." easily.
99
+ ```
100
+ - `context_turn_ids (string)`: The conversation context turn_ids associated with context [ROLE, Processed string] pairs. For example:
101
+ ```
102
+ "['t3_8voapb', 't1_e1p0f5h'] # -> This is the `turn_id`s for the context ['USER', 'It’s summer break ...'], ['SYSTEM', "I'm not big on super hero movie...']. They can used to retrieve more related information like `utc_time` after combining with `conv_id`.
103
+ ```
104
+
105
  ### Data Splits
106
 
107
  We hold the last 20% data (in chronological order according to the created time of the conversation) as testing set. Others can be treated as training samples. We provided a suggested split to split Train into Train and Validation but you are free to try your splits.
 
117
  ### Citation Information
118
 
119
 
120
+ Please cite these two papers if you used this dataset, thanks!
121
+
122
+ ```bib
123
+ @inproceedings{he23large,
124
+ title = Large language models as zero-shot conversational recommenders",
125
+ author = "Zhankui He and Zhouhang Xie and Rahul Jha and Harald Steck and Dawen Liang and Yesu Feng and Bodhisattwa Majumder and Nathan Kallus and Julian McAuley",
126
+ year = "2023",
127
+ booktitle = "CIKM"
128
+ }
129
+ ```
130
 
131
  ```bib
132
  @inproceedings{baumgartner2020pushshift,
 
139
  }
140
  ```
141
 
 
 
 
 
 
 
 
 
142
 
143
  Please contact [Zhankui He](https://aaronheee.github.io) if you have any questions or suggestions.
144