Jyothirmai commited on
Commit
cc88e44
1 Parent(s): dd7ff01

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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="soft",
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