system HF staff commited on
Commit
83a1944
1 Parent(s): 6cf0895

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +38 -0
README.md ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Dialog Ranking Pretrained Transformers (DialogRPT)
2
+
3
+ > How likely a dialog response is upvoted 👍 and/or gets replied 💬?
4
+
5
+ This is what [**DialogRPT**](https://github.com/golsun/DialogRPT) is learned to predict.
6
+ It is a set of dialog response ranking models proposed by [Microsoft Research NLP Group](https://www.microsoft.com/en-us/research/group/natural-language-processing/) trained on 100 + millions of human feedback data.
7
+ It can be used to improve existing dialog generation model (e.g., [DialoGPT](https://huggingface.co/microsoft/DialoGPT-medium)) by re-ranking the generated response candidates.
8
+
9
+ Quick Links:
10
+ * [EMNLP'20 Paper](https://arxiv.org/abs/2009.06978/)
11
+ * [Dataset, training, and evaluation](https://github.com/golsun/DialogRPT)
12
+ * [Colab Notebook Demo](https://colab.research.google.com/drive/1cAtfkbhqsRsT59y3imjR1APw3MHDMkuV?usp=sharing)
13
+
14
+ We considered the following tasks and provided corresponding pretrained models. This page is for the `updown` task, and other model cards can be found in table below.
15
+
16
+ |Task | Description | Pretrained model |
17
+ | :------------- | :----------- | :-----------: |
18
+ | **Human feedback** | given a context and its two human responses, predict...|
19
+ | `updown` | ... which gets more upvotes? | this model |
20
+ | `width`| ... which gets more direct replies? | [model card](https://huggingface.co/microsoft/DialogRPT-width) |
21
+ | `depth`| ... which gets longer follow-up thread? | [model card](https://huggingface.co/microsoft/DialogRPT-width) |
22
+ | **Human-like** (human vs fake) | given a context and one human response, distinguish it with... |
23
+ | `human_vs_rand`| ... a random human response | [model card](https://huggingface.co/microsoft/DialogRPT-human-vs-rand) |
24
+ | `human_vs_machine`| ... a machine generated response | [model card](https://huggingface.co/microsoft/DialogRPT-human-vs-machine) |
25
+
26
+
27
+ ### Contact:
28
+ Please create an issue on [our repo](https://github.com/golsun/DialogRPT)
29
+
30
+ ### Citation:
31
+ ```
32
+ @inproceedings{gao2020dialogrpt,
33
+ title={Dialogue Response RankingTraining with Large-Scale Human Feedback Data},
34
+ author={Xiang Gao and Yizhe Zhang and Michel Galley and Chris Brockett and Bill Dolan},
35
+ year={2020},
36
+ booktitle={EMNLP}
37
+ }
38
+ ```