Commit ·
2462b3c
1
Parent(s): fa08e14
Update README
Browse files
README.md
CHANGED
|
@@ -24,7 +24,7 @@ widget:
|
|
| 24 |
---
|
| 25 |
|
| 26 |
# MVP-multi-task
|
| 27 |
-
The MVP-multi-task model was proposed in [**MVP: Multi-task Supervised Pre-training for Natural Language Generation**](https://
|
| 28 |
|
| 29 |
The detailed information and instructions can be found [https://github.com/RUCAIBox/MVP](https://github.com/RUCAIBox/MVP).
|
| 30 |
|
|
@@ -66,4 +66,36 @@ For data-to-text generation:
|
|
| 66 |
['Iron Man is a fictional superhero appearing in American comic books published by Marvel Comics.']
|
| 67 |
```
|
| 68 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 69 |
## Citation
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
---
|
| 25 |
|
| 26 |
# MVP-multi-task
|
| 27 |
+
The MVP-multi-task model was proposed in [**MVP: Multi-task Supervised Pre-training for Natural Language Generation**](https://arxiv.org/abs/2206.12131) by Tianyi Tang, Junyi Li, Wayne Xin Zhao and Ji-Rong Wen.
|
| 28 |
|
| 29 |
The detailed information and instructions can be found [https://github.com/RUCAIBox/MVP](https://github.com/RUCAIBox/MVP).
|
| 30 |
|
|
|
|
| 66 |
['Iron Man is a fictional superhero appearing in American comic books published by Marvel Comics.']
|
| 67 |
```
|
| 68 |
|
| 69 |
+
## Related Models
|
| 70 |
+
**MVP**: [https://huggingface.co/RUCAIBox/mvp](https://huggingface.co/RUCAIBox/mvp).
|
| 71 |
+
|
| 72 |
+
**Prompt-based models**:
|
| 73 |
+
|
| 74 |
+
- MVP-multi-task: [https://huggingface.co/RUCAIBox/mvp-multi-task](https://huggingface.co/RUCAIBox/mvp-multi-task).
|
| 75 |
+
- MVP-summarization: [https://huggingface.co/RUCAIBox/mvp-summarization](https://huggingface.co/RUCAIBox/mvp-summarization).
|
| 76 |
+
- MVP-open-dialog: [https://huggingface.co/RUCAIBox/mvp-open-dialog](https://huggingface.co/RUCAIBox/mvp-open-dialog).
|
| 77 |
+
- MVP-data-to-text: [https://huggingface.co/RUCAIBox/mvp-data-to-text](https://huggingface.co/RUCAIBox/mvp-data-to-text).
|
| 78 |
+
- MVP-story: [https://huggingface.co/RUCAIBox/mvp-story](https://huggingface.co/RUCAIBox/mvp-story).
|
| 79 |
+
- MVP-question-answering: [https://huggingface.co/RUCAIBox/mvp-question-answering](https://huggingface.co/RUCAIBox/mvp-question-answering).
|
| 80 |
+
- MVP-question-generation: [https://huggingface.co/RUCAIBox/mvp-question-generation](https://huggingface.co/RUCAIBox/mvp-question-generation).
|
| 81 |
+
- MVP-task-dialog: [https://huggingface.co/RUCAIBox/mvp-task-dialog](https://huggingface.co/RUCAIBox/mvp-task-dialog).
|
| 82 |
+
|
| 83 |
+
**Multi-task models**:
|
| 84 |
+
- MTL-summarization: [https://huggingface.co/RUCAIBox/mtl-summarization](https://huggingface.co/RUCAIBox/mtl-summarization).
|
| 85 |
+
- MTL-open-dialog: [https://huggingface.co/RUCAIBox/mtl-open-dialog](https://huggingface.co/RUCAIBox/mtl-open-dialog).
|
| 86 |
+
- MTL-data-to-text: [https://huggingface.co/RUCAIBox/mtl-data-to-text](https://huggingface.co/RUCAIBox/mtl-data-to-text).
|
| 87 |
+
- MTL-story: [https://huggingface.co/RUCAIBox/mtl-story](https://huggingface.co/RUCAIBox/mtl-story).
|
| 88 |
+
- MTL-question-answering: [https://huggingface.co/RUCAIBox/mtl-question-answering](https://huggingface.co/RUCAIBox/mtl-question-answering).
|
| 89 |
+
- MTL-question-generation: [https://huggingface.co/RUCAIBox/mtl-question-generation](https://huggingface.co/RUCAIBox/mtl-question-generation).
|
| 90 |
+
- MTL-task-dialog: [https://huggingface.co/RUCAIBox/mtl-task-dialog](https://huggingface.co/RUCAIBox/mtl-task-dialog).
|
| 91 |
+
|
| 92 |
## Citation
|
| 93 |
+
```bibtex
|
| 94 |
+
@article{tang2022mvp,
|
| 95 |
+
title={MVP: Multi-task Supervised Pre-training for Natural Language Generation},
|
| 96 |
+
author={Tang, Tianyi and Li, Junyi and Zhao, Wayne Xin and Wen, Ji-Rong},
|
| 97 |
+
journal={arXiv preprint arXiv:2206.12131},
|
| 98 |
+
year={2022},
|
| 99 |
+
url={https://arxiv.org/abs/2206.12131},
|
| 100 |
+
}
|
| 101 |
+
```
|