Spaces:
Sleeping
Sleeping
File size: 502 Bytes
dbe85d9 c908479 cacfc79 c908479 cacfc79 149fff5 6a40cba c908479 |
1 2 3 4 5 6 7 8 9 10 11 |
import gradio as gr
from transformers import pipeline
pipe = pipeline(task="image-classification",
model="kaiku03/vit-base-1stGen-Pokemon-Images")
gr.Interface.from_pipeline(pipe,
title="Whos's that pokemon",
description="Pokemon Image Classification",
examples = ['bulba.jfif', 'charmander.png', 'pika.jfif'],
article = "Author: kaiku",
).launch() |