Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
FamilyK1ng
/
Roya
like
0
Text-to-Image
Adapters
6 datasets
License:
openrail
Model card
Files
Files and versions
Community
Use this model
95211e8
Roya
/
app.py
FamilyK1ng
Create app.py
d1019d7
over 1 year ago
raw
Copy download link
history
blame
Safe
177 Bytes
import
streamlit
as
it
from
transformers
import
pipeline
pipe = pipeline(
'continent-analysis'
)
text = st.text_area(
'enter some text!'
)
if
text;
out = pipe(text)
st.json(out)