Update app.py
Browse files
app.py
CHANGED
@@ -5,6 +5,6 @@ pipe = pipeline(task='text-generation', model='Marxav/frpron')
|
|
5 |
x = st.text_input('Write a French word:')
|
6 |
|
7 |
if x:
|
8 |
-
out = pipe(
|
9 |
st.json(out)
|
10 |
st.write('The IPA pronunciation of', x, 'is', out)
|
|
|
5 |
x = st.text_input('Write a French word:')
|
6 |
|
7 |
if x:
|
8 |
+
out = pipe(x)
|
9 |
st.json(out)
|
10 |
st.write('The IPA pronunciation of', x, 'is', out)
|