Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
andreslu
/
orion
like
1
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
c2bfd16
orion
/
app.py
andreslu
Update app.py
cfa4d37
about 2 years ago
raw
Copy download link
history
blame
Safe
207 Bytes
import
gradio
as
gr
import
torch
for
text
in
generated_texts:
print
(text)
def
uppercase
(
text
):
return
text.upper()
iface = gr.Interface(fn=uppercase, inputs=
"text"
, outputs=
"text"
)
iface.launch()