katielink commited on
Commit
585f909
β€’
1 Parent(s): 3d35250

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -10,7 +10,7 @@ examples = [['COVID-19 is'],['A 65-year-old female patient with a past medical h
10
  pipe_biogpt = pipeline("text-generation", model="microsoft/biogpt")
11
 
12
  title = "BioGPT Demo"
13
- description = "Disclaimer: this demo was made for research purposes only and should not be used for medical purposes.\nModel: [BioGPT](https://huggingface.co/microsoft/biogpt)."
14
 
15
  def inference(text):
16
  output_biogpt = pipe_biogpt(text, max_length=100)[0]["generated_text"]
 
10
  pipe_biogpt = pipeline("text-generation", model="microsoft/biogpt")
11
 
12
  title = "BioGPT Demo"
13
+ description = "[Click for the BioGPT model card and more info.](https://huggingface.co/microsoft/biogpt). **Disclaimer:** this demo was made for research purposes only and should not be used for medical purposes."
14
 
15
  def inference(text):
16
  output_biogpt = pipe_biogpt(text, max_length=100)[0]["generated_text"]