Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
lakecity
/
test-korean
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d2b376c
test-korean
/
app.py
lakecity
Create app.py
d2b376c
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
191 Bytes
import
streamlit
as
st
from
transformers
import
pipeline
pipe = pipeline(
'HumanF-MarkrAI/Gukbap-Qwen2-7B'
)
text = st.text_area(
'enter some text!'
)
if
text:
out = pipe(text)
st.json(out)