ashish-shrivastava commited on
Commit
6c45e86
1 Parent(s): ff9bc0d

added paper and github repo info

Browse files
Files changed (1) hide show
  1. README.md +7 -2
README.md CHANGED
@@ -1,7 +1,12 @@
1
- ### Saying No is An Art: Contextualized Fallback Responses for Unanswerable Dialogue Queries
2
 
3
- #### How to use
 
 
 
 
4
 
 
5
  ```python
6
  from transformers import T5ForConditionalGeneration, T5Tokenizer
7
  model_name = "ashish-shrivastava/dont-know-response"
 
1
+ # Natural Don't Know Response Model
2
 
3
+ Fine-tunned on [Google's T5](https://ai.googleblog.com/2020/02/exploring-transfer-learning-with-t5.html) using [Quora Question Pairs(QQP)](https://huggingface.co/nlp/viewer/?dataset=quora) dataset for **Don't Know Response Generation** task.
4
+
5
+ Additional information about this model:
6
+ - Paper : https://arxiv.org/pdf/2012.01873.pdf
7
+ - Github Repo: https://github.com/kaustubhdhole/natural-dont-know
8
 
9
+ #### How to use
10
  ```python
11
  from transformers import T5ForConditionalGeneration, T5Tokenizer
12
  model_name = "ashish-shrivastava/dont-know-response"