Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -62,12 +62,16 @@ examples = [
|
|
62 |
["COVID-19 is", "microsoft/biogpt", 25, 5, "English"],
|
63 |
["Kanser", "microsoft/biogpt", 25, 5, "Turkish"]
|
64 |
]
|
|
|
65 |
title = " BioGPT: Generative Pre-trained Transformer for Biomedical Text Generation and Mining"
|
|
|
|
|
66 |
demo_app = gr.Interface(
|
67 |
biogpt,
|
68 |
inputs,
|
69 |
outputs,
|
70 |
title=title,
|
|
|
71 |
examples=examples,
|
72 |
cache_examples=True,
|
73 |
)
|
|
|
62 |
["COVID-19 is", "microsoft/biogpt", 25, 5, "English"],
|
63 |
["Kanser", "microsoft/biogpt", 25, 5, "Turkish"]
|
64 |
]
|
65 |
+
|
66 |
title = " BioGPT: Generative Pre-trained Transformer for Biomedical Text Generation and Mining"
|
67 |
+
description = "BioGPT is a domain-specific generative pre-trained Transformer language model for biomedical text generation and mining. BioGPT follows the Transformer language model backbone, and is pre-trained on 15M PubMed abstracts from scratch. Github: github.com/microsoft/BioGPT Paper: https://arxiv.org/abs/2210.10341"
|
68 |
+
|
69 |
demo_app = gr.Interface(
|
70 |
biogpt,
|
71 |
inputs,
|
72 |
outputs,
|
73 |
title=title,
|
74 |
+
description=description,
|
75 |
examples=examples,
|
76 |
cache_examples=True,
|
77 |
)
|