Update README.md
Browse files
README.md
CHANGED
@@ -11,4 +11,10 @@ tags:
|
|
11 |
|
12 |
|
13 |
It was trained on a large corpus of text, including some emotionally engaging datasets such as the "Facebook Empathetic Dialogues" dataset containing 25k conversations.
|
14 |
-
A dataset of 25k conversations grounded in emotional situations to facilitate training and evaluating dialogue systems.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
|
12 |
|
13 |
It was trained on a large corpus of text, including some emotionally engaging datasets such as the "Facebook Empathetic Dialogues" dataset containing 25k conversations.
|
14 |
+
A dataset of 25k conversations grounded in emotional situations to facilitate training and evaluating dialogue systems.
|
15 |
+
|
16 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
17 |
+
|
18 |
+
tokenizer = AutoTokenizer.from_pretrained("AliiaR/DialoGPT-medium-empathetic-dialogues")
|
19 |
+
|
20 |
+
model = AutoModelForCausalLM.from_pretrained("AliiaR/DialoGPT-medium-empathetic-dialogues")
|