Update app.py
Browse files
app.py
CHANGED
@@ -53,9 +53,9 @@ def visualize(image):
|
|
53 |
|
54 |
with gr.Blocks() as demo:
|
55 |
gr.Markdown("## ViTMAE Demo")
|
56 |
-
gr.Markdown("ViTMAE is an architecture that combine masked autoencoder and Vision Transformer (ViT) for self-supervised pre-training
|
57 |
-
gr.Markdown("By pre-training a ViT to reconstruct pixel values for masked patches, one can get results after fine-tuning that outperform supervised pre-training
|
58 |
-
|
59 |
with gr.Row():
|
60 |
|
61 |
input_img = gr.Image()
|
|
|
53 |
|
54 |
with gr.Blocks() as demo:
|
55 |
gr.Markdown("## ViTMAE Demo")
|
56 |
+
gr.Markdown("**ViTMAE is an architecture that combine masked autoencoder and Vision Transformer (ViT) for self-supervised pre-training.**")
|
57 |
+
gr.Markdown("**By pre-training a ViT to reconstruct pixel values for masked patches, one can get results after fine-tuning that outperform supervised pre-training.**")
|
58 |
+
gr.Markdown("**This application demonstrates the reconstruction. To start, simply upload an image.**")
|
59 |
with gr.Row():
|
60 |
|
61 |
input_img = gr.Image()
|