Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Marxav
/
frpron
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
97edd96
frpron
/
app.py
Marxav
Create app.py
97edd96
about 2 years ago
raw
Copy download link
history
blame
229 Bytes
import
streamlit
as
st
from
transformers
import
pipeline
pipe = pipeline(
'Marxav/frpron'
)
x = st.slider(
'Enter a French word:'
)
if
x:
out = pipe(text)
st.json(out)
#st.write('The IPA pronunciation of', x, 'is', out)