Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
picocreator/rwkv-v5-1b5-cpu
Cran-May
/
rwkv-v5-1b5-cpu
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
4a9ff2c
rwkv-v5-1b5-cpu
/
app.py
BlinkDL
Update app.py
4a9ff2c
over 2 years ago
raw
Copy download link
history
blame
Safe
194 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
'Please use https://huggingface.co/spaces/yahma/rwkv-14b first :)'
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()