Spaces:
Runtime error
Runtime error
import gradio as gr | |
from transformers import pipeline | |
import soundfile as sf | |
import io | |
# ์ด๋ฏธ์ง ์ธ์ ํ์ดํ๋ผ์ธ ๋ก๋ | |
model = pipeline("image-classification", model="google/vit-base-patch16-224") | |
# ์นดํ ๊ณ ๋ฆฌ์ ๋ฐ๋ฅธ ์ฌ์ด๋ ํ์ผ์ ๊ฒฝ๋ก๋ฅผ ์ ์ | |
sound_files = { | |
"dog": "path/to/dog_bark.wav", | |
"cat": "path/to/cat_meow.wav", | |
# ... ๊ฐ ์นดํ ๊ณ ๋ฆฌ์ ๋ํ ์ฌ์ด๋ ํ์ผ ๊ฒฝ๋ก ์ถ๊ฐ | |
} | |
def classify_image(uploaded_image): | |
predictions = model(uploaded_image) | |
# ๊ฐ์ฅ ํ๋ฅ ์ด ๋์ ์์ธก ๊ฒฐ๊ณผ๋ฅผ ๊ฐ์ ธ์ด | |
top_prediction = predictions[0]['label'] | |
# ์์ธก ๊ฒฐ๊ณผ์ ํด๋นํ๋ ์ฌ์ด๋ ํ์ผ์ ๋ก๋ | |
sound_path = sound_files.get(top_prediction, None) | |
if sound_path is not None: | |
with open(sound_path, 'rb') as file: | |
audio_data = file.read() | |
return top_prediction, audio_data | |
else: | |
# ํด๋นํ๋ ์ฌ์ด๋ ํ์ผ์ด ์๋ ๊ฒฝ์ฐ ๋น ์ค๋์ค ๋ฐ์ดํฐ ๋ฐํ | |
return top_prediction, None | |
# Gradio ์ธํฐํ์ด์ค ์์ฑ | |
iface = gr.Interface( | |
fn=classify_image, | |
inputs=gr.Image(type="pil"), | |
outputs=[gr.Label(), gr.Audio(format="wav")], | |
title="์ด๋ฏธ์ง ๋ถ๋ฅ ๋ฐ ์ฌ์ด๋ ์ฌ์", | |
description="์ด๋ฏธ์ง๋ฅผ ์ ๋ก๋ํ๋ฉด, ์ฌ๋ฌผ์ ์ธ์ํ๊ณ ํด๋นํ๋ ์ฌ์ด๋๋ฅผ ์ฌ์ํฉ๋๋ค." | |
) | |
# ์ธํฐํ์ด์ค ์คํ | |
iface.launch() | |