GunaKoppula commited on
Commit
3bc0094
·
verified ·
1 Parent(s): 7cdcdab

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -1
app.py CHANGED
@@ -62,7 +62,19 @@ def run(history, text, image, audio_upload, audio_mic):
62
 
63
 
64
  with gr.Blocks() as demo:
65
- gr.Markdown("## MulitModal Phi2 Model Pretraining and Finetuning from Scratch", align="center")
 
 
 
 
 
 
 
 
 
 
 
 
66
  gr.Markdown(
67
  """This is a multimodal implementation of [Phi2](https://huggingface.co/microsoft/phi-2) model. Please find the source code and training details [here](https://github.com/RaviNaik/ERA-CAPSTONE/MultiModalPhi2).
68
 
 
62
 
63
 
64
  with gr.Blocks() as demo:
65
+ # gr.Markdown("## MulitModal Phi2 Model Pretraining and Finetuning from Scratch", align="center")
66
+ with gr.Row() as title_row:
67
+ with gr.Column():
68
+ # Create an empty column on the left for spacing
69
+ pass
70
+
71
+ with gr.Column():
72
+ # Add Markdown with centered text
73
+ gr.Markdown("## MulitModal Phi2 Model Pretraining and Finetuning from Scratch")
74
+
75
+ with gr.Column():
76
+ # Create an empty column on the right for spacing
77
+ pass
78
  gr.Markdown(
79
  """This is a multimodal implementation of [Phi2](https://huggingface.co/microsoft/phi-2) model. Please find the source code and training details [here](https://github.com/RaviNaik/ERA-CAPSTONE/MultiModalPhi2).
80