Update README.md
Browse files
README.md
CHANGED
@@ -12,9 +12,9 @@ tags:
|
|
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 |
-
|
17 |
|
18 |
-
|
19 |
-
|
20 |
-
model = AutoModelForCausalLM.from_pretrained("AliiaR/DialoGPT-medium-empathetic-dialogues")
|
|
|
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 |
+
```python
|
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")
|
|
|
|