Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
title="BEiT"
|
4 |
+
description="Gradio demo for BEiT: BERT Pre-Training of Image Transformers"
|
5 |
+
gr.Interface.load("huggingface/microsoft/beit-base-patch16-224-pt22k-ft22k",title=title,description=description).launch()
|