Transformers
PyTorch
English
t5
text2text-generation
semantic-role-labeling
question-answer generation
text-generation-inference
Instructions to use kleinay/qanom-seq2seq-model-baseline with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use kleinay/qanom-seq2seq-model-baseline with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("kleinay/qanom-seq2seq-model-baseline") model = AutoModelForSeq2SeqLM.from_pretrained("kleinay/qanom-seq2seq-model-baseline", device_map="auto") - Notebooks
- Google Colab
- Kaggle
link fix
Browse files
README.md
CHANGED
|
@@ -13,7 +13,7 @@ datasets:
|
|
| 13 |
|
| 14 |
This is a `t5-small` pretrained model, fine-tuned on the task of generating QANom QAs.
|
| 15 |
|
| 16 |
-
"QANom" stands for "QASRL for Nominalizations", which is an adaptation of [QASRL (Question-Answer driven Semantic Role Labeling)](
|
| 17 |
|
| 18 |
## Demo
|
| 19 |
|
|
|
|
| 13 |
|
| 14 |
This is a `t5-small` pretrained model, fine-tuned on the task of generating QANom QAs.
|
| 15 |
|
| 16 |
+
"QANom" stands for "QASRL for Nominalizations", which is an adaptation of [QASRL (Question-Answer driven Semantic Role Labeling)](https://qasrl.org) for the nominal predicates domain. See the [QANom paper](https://aclanthology.org/2020.coling-main.274/) for details about the task. The QANom Dataset official site is a [Google drive](https://drive.google.com/drive/folders/15PHKVdPm65ysgdkV47z6J_73kETk7_of), but we also wrapped it into a [Huggingface Dataset](https://huggingface.co/datasets/biu-nlp/qanom), which is easier to plug-and-play with (check out our [HF profile](https://huggingface.co/biu-nlp) for other related datasets, such as QASRL, QAMR, QADiscourse, and QA-Align).
|
| 17 |
|
| 18 |
## Demo
|
| 19 |
|