Spaces:
Runtime error
Runtime error
Commit
·
f8b2f73
1
Parent(s):
75f8f92
updated ui
Browse files
app.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
import streamlit as st
|
2 |
from transformers import AutoTokenizer,AutoModelForSeq2SeqLM
|
3 |
|
4 |
-
@st.cache(persist=True)
|
5 |
def load_model(input_complex_sentence,model):
|
6 |
|
7 |
base_path = "flax-community/"
|
@@ -28,7 +28,7 @@ def main():
|
|
28 |
example = "Mary likes to play football in her freetime whenever she meets with her friends that are very nice people."
|
29 |
input_complex_sentence = st.text_area("Please type a long Sentence to split",example)
|
30 |
|
31 |
-
if st.button('✂️'):
|
32 |
with st.spinner("Spliting Sentence...🧠"):
|
33 |
generated_sentence = load_model(input_complex_sentence, model)
|
34 |
st.write(generated_sentence)
|
|
|
1 |
import streamlit as st
|
2 |
from transformers import AutoTokenizer,AutoModelForSeq2SeqLM
|
3 |
|
4 |
+
@st.cache(show_spinner=False, persist=True)
|
5 |
def load_model(input_complex_sentence,model):
|
6 |
|
7 |
base_path = "flax-community/"
|
|
|
28 |
example = "Mary likes to play football in her freetime whenever she meets with her friends that are very nice people."
|
29 |
input_complex_sentence = st.text_area("Please type a long Sentence to split",example)
|
30 |
|
31 |
+
if st.button('Split✂️'):
|
32 |
with st.spinner("Spliting Sentence...🧠"):
|
33 |
generated_sentence = load_model(input_complex_sentence, model)
|
34 |
st.write(generated_sentence)
|