Marxav commited on
Commit
97edd96
1 Parent(s): 6ccb7e1

Create app.py

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