Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
from transformers import pipeline
|
3 |
+
|
4 |
+
pipe = pipeline('Marxav/frpron')
|
5 |
+
x = st.slider('Enter a French word:')
|
6 |
+
|
7 |
+
if x:
|
8 |
+
out = pipe(text)
|
9 |
+
st.json(out)
|
10 |
+
#st.write('The IPA pronunciation of', x, 'is', out)
|