Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -69,8 +69,8 @@ theme = gr.themes.Default(primary_hue="blue").set(
|
|
69 |
)
|
70 |
|
71 |
|
72 |
-
with gr.Blocks(
|
73 |
-
gr.Markdown("## MulitModal Phi2 Model Pretraining and Finetuning from Scratch", justify="center")
|
74 |
|
75 |
# with gr.Row() as title_row:
|
76 |
# with gr.Column():
|
@@ -86,6 +86,16 @@ with gr.Blocks(title="My Title", theme="darkdefault") as demo:
|
|
86 |
# # with gr.Column():
|
87 |
# # # Create an empty column on the right for spacing
|
88 |
# # pass
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
|
90 |
gr.Markdown(
|
91 |
"""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).
|
|
|
69 |
)
|
70 |
|
71 |
|
72 |
+
with gr.Blocks(theme='upsatwal/mlsc_tiet') as demo:
|
73 |
+
# gr.Markdown("## MulitModal Phi2 Model Pretraining and Finetuning from Scratch", justify="center")
|
74 |
|
75 |
# with gr.Row() as title_row:
|
76 |
# with gr.Column():
|
|
|
86 |
# # with gr.Column():
|
87 |
# # # Create an empty column on the right for spacing
|
88 |
# # pass
|
89 |
+
|
90 |
+
with gr.Column():
|
91 |
+
# Add an empty line above the text for vertical centering
|
92 |
+
gr.Text("")
|
93 |
+
|
94 |
+
# Add the title text in the center
|
95 |
+
gr.Text("MulitModal Phi2 Model Pretraining and Finetuning from Scratch", style={"text-align": "center"})
|
96 |
+
|
97 |
+
# Add an empty line below the text for vertical centering
|
98 |
+
gr.Text("")
|
99 |
|
100 |
gr.Markdown(
|
101 |
"""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).
|