Jyothirmai
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -70,13 +70,14 @@ title = "MedViT: A Vision Transformer-Driven Method for Generating Medical Repor
|
|
70 |
interface = gr.Interface(
|
71 |
fn=predict,
|
72 |
inputs = [image, model_choice, max_tokens, temperature],
|
73 |
-
theme="
|
74 |
outputs=caption,
|
75 |
examples = examples,
|
76 |
title = title,
|
77 |
description = description
|
78 |
)
|
79 |
|
|
|
80 |
interface.launch(debug=True)
|
81 |
|
82 |
|
|
|
70 |
interface = gr.Interface(
|
71 |
fn=predict,
|
72 |
inputs = [image, model_choice, max_tokens, temperature],
|
73 |
+
theme="sudeepshouche/minimalist",
|
74 |
outputs=caption,
|
75 |
examples = examples,
|
76 |
title = title,
|
77 |
description = description
|
78 |
)
|
79 |
|
80 |
+
|
81 |
interface.launch(debug=True)
|
82 |
|
83 |
|