Spaces:
Runtime error
Runtime error
File size: 883 Bytes
531d477 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
import gradio as gr
from transformers import pipeline
# ํ๊ตญ์ด ์ฑํ
๋ชจ๋ธ ๋ถ๋ฌ์ค๊ธฐ (์: KoAlpaca, LLaMA, Mistral ๋ฑ)
chat = pipeline("text-generation", model="beomi/KoAlpaca-Polyglot-5.8B")
# ๋ถ์ ํจ์ ์ ์
def analyze_korean_text(text):
prompt = f"๋ค์ ๋ฌธ์ฅ์ ๋ถ์ํ๊ณ ๋ฌด๋กํ๊ฑฐ๋ ๊ณผ๊ฒฉํ ํํ์ด ์์ผ๋ฉด ์ง์ ํ๊ณ , ๋ ์น์ ํ๊ฒ ๋ฐ๊ฟ์ค:\n\n{text}"
response = chat(prompt, max_new_tokens=200)[0]['generated_text']
return response
# Gradio ์ธํฐํ์ด์ค
iface = gr.Interface(
fn=analyze_korean_text,
inputs=gr.Textbox(label="๋ถ์ํ ๋ฌธ์ฅ ์
๋ ฅ"),
outputs=gr.Textbox(label="๋ถ์ ๊ฒฐ๊ณผ"),
title="๋ฌธ์ฅ ๋ถ์๊ธฐ (์น์ ํ๊ฒ ๋ฐ๊ฟ์ฃผ๋ AI)",
description="๋ฌธ์ฅ์ ์
๋ ฅํ๋ฉด ๋ฌด๋กํ ํํ์ ์ง์ ํ๊ณ ๋ ์์ ์๊ฒ ๋ฐ๊ฟ์ฃผ๋ ๋์ฐ๋ฏธ์
๋๋ค."
)
# ์คํ
iface.launch()
|