Marxav commited on
Commit
685dadd
1 Parent(s): 3cbd634

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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(text)
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)