Update app.py
Browse files
app.py
CHANGED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
|
| 3 |
+
gr.Interface.load(
|
| 4 |
+
"huggingface/google/vit-base-patch16-224",
|
| 5 |
+
theme="default",
|
| 6 |
+
examples=[["alligator.jpg"], ["laptop.jpg"]],
|
| 7 |
+
css=".footer{display:none !important}",
|
| 8 |
+
title=None).launch()
|