julien-c HF staff commited on
Commit
3322d94
1 Parent(s): 6779a4b

Migrate model card from transformers-repo

Browse files

Read announcement at https://discuss.huggingface.co/t/announcement-all-model-cards-will-be-migrated-to-hf-co-model-repos/2755
Original file history: https://github.com/huggingface/transformers/commits/master/model_cards/mrm8488/t5-base-finetuned-quartz/README.md

Files changed (1) hide show
  1. README.md +74 -0
README.md ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ datasets:
4
+ - quartz
5
+ pipeline_tag: question-answering
6
+ ---
7
+
8
+ # T5-base fine-tuned on QuaRTz
9
+
10
+ [Google's T5](https://ai.googleblog.com/2020/02/exploring-transfer-learning-with-t5.html) fine-tuned on [QuaRTz](https://allenai.org/data/quartz) for **QA** downstream task.
11
+
12
+ ## Details of T5
13
+
14
+ The **T5** model was presented in [Exploring the Limits of Transfer Learning with a Unified Text-to-Text Transformer](https://arxiv.org/pdf/1910.10683.pdf) by *Colin Raffel, Noam Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena, Yanqi Zhou, Wei Li, Peter J. Liu* in Here the abstract:
15
+
16
+ Transfer learning, where a model is first pre-trained on a data-rich task before being fine-tuned on a downstream task, has emerged as a powerful technique in natural language processing (NLP). The effectiveness of transfer learning has given rise to a diversity of approaches, methodology, and practice. In this paper, we explore the landscape of transfer learning techniques for NLP by introducing a unified framework that converts every language problem into a text-to-text format. Our systematic study compares pre-training objectives, architectures, unlabeled datasets, transfer approaches, and other factors on dozens of language understanding tasks. By combining the insights from our exploration with scale and our new “Colossal Clean Crawled Corpus”, we achieve state-of-the-art results on many benchmarks covering summarization, question answering, text classification, and more. To facilitate future work on transfer learning for NLP, we release our dataset, pre-trained models, and code.
17
+
18
+ ![model image](https://i.imgur.com/jVFMMWR.png)
19
+
20
+
21
+ ## Details of the dataset 📚
22
+
23
+ **QuaRTz** is a crowdsourced dataset of 3864 multiple-choice questions about open domain qualitative relationships. Each question is paired with one of 405 different background sentences (sometimes short paragraphs). The QuaRTz dataset V1 contains 3864 questions about open domain qualitative relationships. Each question is paired with one of 405 different background sentences (sometimes short paragraphs).
24
+ The dataset is split into:
25
+
26
+ |Set | Samples|
27
+ |-----|--------|
28
+ |Train | 2696 |
29
+ |Valid | 384 |
30
+ |Test | 784 |
31
+
32
+ ## Model fine-tuning 🏋️‍
33
+
34
+ The training script is a slightly modified version of [this awesome one](https://colab.research.google.com/github/patil-suraj/exploring-T5/blob/master/T5_on_TPU.ipynb) by [Suraj Patil](https://twitter.com/psuraj28). The *question*, *context* (`para` field) and *options* (`choices` field) are concatenated and passed to the **encoder**. The **decoder** receives the right *answer* (by querying `answerKey` field). More details about the dataset fields/format [here](https://huggingface.co/nlp/viewer/?dataset=quartz)
35
+
36
+ ## Results 📋
37
+
38
+
39
+ |Set | Metric | Score |
40
+ |-----|--------|-------|
41
+ |Validation | Accuracy (EM) | **83.59**|
42
+ |Test | Accuracy (EM) | **81.50**|
43
+
44
+
45
+ ## Model in Action 🚀
46
+
47
+ ```python
48
+ from transformers import AutoModelWithLMHead, AutoTokenizer
49
+
50
+ tokenizer = AutoTokenizer.from_pretrained("mrm8488/t5-base-finetuned-quartz")
51
+ model = AutoModelWithLMHead.from_pretrained("mrm8488/t5-base-finetuned-quartz")
52
+
53
+ def get_response(question, fact, opts, max_length=16):
54
+ input_text = 'question: %s context: %s options: %s' % (question, fact, opts)
55
+ features = tokenizer([input_text], return_tensors='pt')
56
+
57
+ output = model.generate(input_ids=features['input_ids'],
58
+ attention_mask=features['attention_mask'],
59
+ max_length=max_length)
60
+
61
+ return tokenizer.decode(output[0])
62
+
63
+ fact = 'The sooner cancer is detected the easier it is to treat.'
64
+ question = 'John was a doctor in a cancer ward and knew that early detection was key. The cancer being detected quickly makes the cancer treatment'
65
+ opts = 'Easier, Harder'
66
+
67
+ get_response(question, fact, opts)
68
+
69
+ # output: 'Easier'
70
+ ```
71
+
72
+ > Created by [Manuel Romero/@mrm8488](https://twitter.com/mrm8488) | [LinkedIn](https://www.linkedin.com/in/manuel-romero-cs/)
73
+
74
+ > Made with <span style="color: #e25555;">&hearts;</span> in Spain