Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,3 +1,9 @@
|
|
1 |
import gradio as gr
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
gr.Interface.load("models/microsoft/resnet-18").launch()
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
from datasets import load_dataset
|
4 |
+
|
5 |
+
dataset = load_dataset("cifar100")
|
6 |
+
dataset = load_dataset("fashion_mnist")
|
7 |
+
|
8 |
+
gr.Interface.load("models/google/vit-base-patch16-224").launch()
|
9 |
gr.Interface.load("models/microsoft/resnet-18").launch()
|