Spaces:
Runtime error
Runtime error
Commit
·
7f4a322
1
Parent(s):
57e0a85
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,5 +1,11 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
from transformers import pipeline
|
| 3 |
|
| 4 |
-
pipe = pipeline(task="image-classification",
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
from transformers import pipeline
|
| 3 |
|
| 4 |
+
pipe = pipeline(task="image-classification",
|
| 5 |
+
# model that can do 22k-category classification
|
| 6 |
+
model="microsoft/beit-base-patch16-224-pt22k-ft22k")
|
| 7 |
+
gr.Interface.from_pipeline(pipe,
|
| 8 |
+
title="22k Image Classification",
|
| 9 |
+
description="Object Recognition using Microsoft BEIT",
|
| 10 |
+
examples = ['wonder_cat.jpg', 'aki_dog.jpg',],
|
| 11 |
+
allow_flagging="never").launch(inbrowser=True)
|