osanseviero commited on
Commit
59d6e8b
1 Parent(s): 911bd1c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -22,7 +22,7 @@ examples = [
22
  ]
23
 
24
  title = "Flan T5 and Vanilla T5"
25
- description = "Demo that compares [T5-large](https://huggingface.co/t5-large) and [Flan-T5-large](https://huggingface.co/ybelkada/flan-t5-large)"
26
 
27
  def inference(text):
28
  output_flan = pipe_flan(text, max_length=100)[0]["generated_text"]
 
22
  ]
23
 
24
  title = "Flan T5 and Vanilla T5"
25
+ description = "This demo compares [T5-large](https://huggingface.co/t5-large) and [Flan-T5-large](https://huggingface.co/ybelkada/flan-t5-large). Note that T5 expects a very specific format of the prompts, so the examples below are not necessarily the best prompts to compare."
26
 
27
  def inference(text):
28
  output_flan = pipe_flan(text, max_length=100)[0]["generated_text"]