GunaKoppula commited on
Commit
4df4bed
·
verified ·
1 Parent(s): 9b84a38

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -1
app.py CHANGED
@@ -61,7 +61,19 @@ def run(history, text, image, audio_upload, audio_mic):
61
  return history, None, None, None, None
62
 
63
 
64
- with gr.Blocks(theme="dark") as demo:
 
 
 
 
 
 
 
 
 
 
 
 
65
  gr.Markdown("## MulitModal Phi2 Model Pretraining and Finetuning from Scratch")
66
  gr.Markdown(
67
  """This is a multimodal implementation of [Phi2](https://huggingface.co/microsoft/phi-2) model.
 
61
  return history, None, None, None, None
62
 
63
 
64
+ with gr.Blocks() as demo:
65
+ gr.HTML("""
66
+ <style>
67
+ body {
68
+ background-color: #2E2E2E;
69
+ color: #FFFFFF;
70
+ }
71
+ .output {
72
+ background-color: #1E1E1E;
73
+ color: #FFFFFF;
74
+ }
75
+ </style>
76
+ """)
77
  gr.Markdown("## MulitModal Phi2 Model Pretraining and Finetuning from Scratch")
78
  gr.Markdown(
79
  """This is a multimodal implementation of [Phi2](https://huggingface.co/microsoft/phi-2) model.