ThomasFfefefef
commited on
Commit
•
ca6ccc7
1
Parent(s):
fd35df4
Update README.md
Browse files
README.md
CHANGED
@@ -16,19 +16,29 @@ model-index:
|
|
16 |
args: plain_text
|
17 |
---
|
18 |
|
|
|
19 |
|
|
|
20 |
|
21 |
|
|
|
22 |
|
23 |
|
24 |
-
|
|
|
|
|
|
|
|
|
|
|
25 |
|
26 |
-
|
|
|
|
|
|
|
27 |
|
28 |
It achieves the following results on the evaluation set:
|
29 |
- Loss: 1.5691
|
30 |
|
31 |
-
If you want to learn how to fine-tune t5 model to do the same, you can follow this [tutorial](https://colab.research.google.com/drive/1z-Zl2hftMrFXabYfmz8o9YZpgYx6sGeW?usp=sharing)
|
32 |
|
33 |
## Use the Model
|
34 |
```
|
|
|
16 |
args: plain_text
|
17 |
---
|
18 |
|
19 |
+
# t5-end2end-question-generation
|
20 |
|
21 |
+
👉 This model is a fine-tuned version of [t5-base](https://huggingface.co/t5-base) on the squad dataset to generate questions based on a context.
|
22 |
|
23 |
|
24 |
+
If you want to learn how to fine-tune t5 model to do the same, you can follow this [tutorial](https://colab.research.google.com/drive/1z-Zl2hftMrFXabYfmz8o9YZpgYx6sGeW?usp=sharing)
|
25 |
|
26 |
|
27 |
+
For instance:
|
28 |
+
```
|
29 |
+
Context: "Python is an interpreted, high-level, general-purpose programming language. Created by Guido van Rossum and first released in 1991, Python's design philosophy emphasizes code readability with its notable use of significant whitespace."
|
30 |
+
```
|
31 |
+
```
|
32 |
+
Questions:
|
33 |
|
34 |
+
Who created Python?,
|
35 |
+
When was Python first released?
|
36 |
+
What is Python's design philosophy?
|
37 |
+
```
|
38 |
|
39 |
It achieves the following results on the evaluation set:
|
40 |
- Loss: 1.5691
|
41 |
|
|
|
42 |
|
43 |
## Use the Model
|
44 |
```
|