style(title): add css for title
Browse files
app.py
CHANGED
@@ -119,7 +119,9 @@ image_filepaths = examples(dir_examples=DIR_EXAMPLES)
|
|
119 |
default_value_input = Image.open(image_filepaths[DEFAULT_IMAGE_INDEX])
|
120 |
|
121 |
with gr.Blocks() as demo:
|
122 |
-
gr.HTML(
|
|
|
|
|
123 |
with gr.Row():
|
124 |
with gr.Column():
|
125 |
image_input = gr.Image(
|
|
|
119 |
default_value_input = Image.open(image_filepaths[DEFAULT_IMAGE_INDEX])
|
120 |
|
121 |
with gr.Blocks() as demo:
|
122 |
+
gr.HTML(
|
123 |
+
'<h1 style="text-align: center; margin-bottom: 1rem">ML model for bear face recognition 🐻</h1>'
|
124 |
+
)
|
125 |
with gr.Row():
|
126 |
with gr.Column():
|
127 |
image_input = gr.Image(
|