Transformers
PyTorch
TensorBoard
t5
text2text-generation
Question(s) Generation
text-generation-inference
Instructions to use consciousAI/question-generation-auto-t5-v1-base-s with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use consciousAI/question-generation-auto-t5-v1-base-s with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForMultimodalLM tokenizer = AutoTokenizer.from_pretrained("consciousAI/question-generation-auto-t5-v1-base-s") model = AutoModelForMultimodalLM.from_pretrained("consciousAI/question-generation-auto-t5-v1-base-s") - Notebooks
- Google Colab
- Kaggle
Commit ·
8af81fd
1
Parent(s): 5438a7f
Update README.md
Browse files
README.md
CHANGED
|
@@ -4,24 +4,24 @@ tags:
|
|
| 4 |
metrics:
|
| 5 |
- rouge
|
| 6 |
model-index:
|
| 7 |
-
- name:
|
| 8 |
results: []
|
| 9 |
---
|
| 10 |
|
| 11 |
# Auto Question Generation
|
| 12 |
The model is intended to be used for Auto Question Generation task i.e. no hint are required as input. The model is expected to produce one or possibly more than one question from the provided context.
|
| 13 |
|
| 14 |
-
[Live Demo: Question Generation](https://huggingface.co/spaces/
|
| 15 |
|
| 16 |
Including this there are five models trained with different training sets, demo provide comparison to all in one go. However, you can reach individual projects at below links:
|
| 17 |
|
| 18 |
-
[Auto Question Generation v2](https://huggingface.co/
|
| 19 |
|
| 20 |
-
[Auto Question Generation v3](https://huggingface.co/
|
| 21 |
|
| 22 |
-
[Auto/Hints based Question Generation v1](https://huggingface.co/
|
| 23 |
|
| 24 |
-
[Auto/Hints based Question Generation v2](https://huggingface.co/
|
| 25 |
|
| 26 |
This model can be used as below:
|
| 27 |
|
|
@@ -31,7 +31,7 @@ from transformers import (
|
|
| 31 |
AutoTokenizer
|
| 32 |
)
|
| 33 |
|
| 34 |
-
model_checkpoint = "
|
| 35 |
|
| 36 |
model = AutoModelForSeq2SeqLM.from_pretrained(model_checkpoint)
|
| 37 |
tokenizer = AutoTokenizer.from_pretrained(model_checkpoint)
|
|
|
|
| 4 |
metrics:
|
| 5 |
- rouge
|
| 6 |
model-index:
|
| 7 |
+
- name: consciousAI/question-generation-auto-t5-v1-base-s
|
| 8 |
results: []
|
| 9 |
---
|
| 10 |
|
| 11 |
# Auto Question Generation
|
| 12 |
The model is intended to be used for Auto Question Generation task i.e. no hint are required as input. The model is expected to produce one or possibly more than one question from the provided context.
|
| 13 |
|
| 14 |
+
[Live Demo: Question Generation](https://huggingface.co/spaces/consciousAI/question_generation)
|
| 15 |
|
| 16 |
Including this there are five models trained with different training sets, demo provide comparison to all in one go. However, you can reach individual projects at below links:
|
| 17 |
|
| 18 |
+
[Auto Question Generation v2](https://huggingface.co/consciousAI/question-generation-auto-t5-v1-base-s-q)
|
| 19 |
|
| 20 |
+
[Auto Question Generation v3](https://huggingface.co/consciousAI/question-generation-auto-t5-v1-base-s-q-c)
|
| 21 |
|
| 22 |
+
[Auto/Hints based Question Generation v1](https://huggingface.co/consciousAI/question-generation-auto-hints-t5-v1-base-s-q)
|
| 23 |
|
| 24 |
+
[Auto/Hints based Question Generation v2](https://huggingface.co/consciousAI/question-generation-auto-hints-t5-v1-base-s-q-c)
|
| 25 |
|
| 26 |
This model can be used as below:
|
| 27 |
|
|
|
|
| 31 |
AutoTokenizer
|
| 32 |
)
|
| 33 |
|
| 34 |
+
model_checkpoint = "consciousAI/question-generation-auto-t5-v1-base-s"
|
| 35 |
|
| 36 |
model = AutoModelForSeq2SeqLM.from_pretrained(model_checkpoint)
|
| 37 |
tokenizer = AutoTokenizer.from_pretrained(model_checkpoint)
|