Instructions to use microsoft/DialogRPT-width with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use microsoft/DialogRPT-width with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="microsoft/DialogRPT-width")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("microsoft/DialogRPT-width") model = AutoModelForSequenceClassification.from_pretrained("microsoft/DialogRPT-width", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -20,7 +20,7 @@ We considered the following tasks and provided corresponding pretrained models.
|
|
| 20 |
| **Human feedback** | **given a context and its two human responses, predict...**|
|
| 21 |
| `updown` | ... which gets more upvotes? | [model card](https://huggingface.co/microsoft/DialogRPT-updown) |
|
| 22 |
| `width`| ... which gets more direct replies? | this model |
|
| 23 |
-
| `depth`| ... which gets longer follow-up thread? | [model card](https://huggingface.co/microsoft/DialogRPT-
|
| 24 |
| **Human-like** (human vs fake) | **given a context and one human response, distinguish it with...** |
|
| 25 |
| `human_vs_rand`| ... a random human response | [model card](https://huggingface.co/microsoft/DialogRPT-human-vs-rand) |
|
| 26 |
| `human_vs_machine`| ... a machine generated response | [model card](https://huggingface.co/microsoft/DialogRPT-human-vs-machine) |
|
|
|
|
| 20 |
| **Human feedback** | **given a context and its two human responses, predict...**|
|
| 21 |
| `updown` | ... which gets more upvotes? | [model card](https://huggingface.co/microsoft/DialogRPT-updown) |
|
| 22 |
| `width`| ... which gets more direct replies? | this model |
|
| 23 |
+
| `depth`| ... which gets longer follow-up thread? | [model card](https://huggingface.co/microsoft/DialogRPT-depth) |
|
| 24 |
| **Human-like** (human vs fake) | **given a context and one human response, distinguish it with...** |
|
| 25 |
| `human_vs_rand`| ... a random human response | [model card](https://huggingface.co/microsoft/DialogRPT-human-vs-rand) |
|
| 26 |
| `human_vs_machine`| ... a machine generated response | [model card](https://huggingface.co/microsoft/DialogRPT-human-vs-machine) |
|