Kingston Yip commited on
Commit
611cacb
1 Parent(s): 5e81a63

removed cache

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -25,7 +25,7 @@ def predict_cyberbullying_probability(sentence, tokenizer, model):
25
  res = probs.numpy().tolist()
26
  return res
27
 
28
- @st.cache
29
  def perform_cyberbullying_analysis(tweet):
30
  with st.spinner(text="loading model..."):
31
 
 
25
  res = probs.numpy().tolist()
26
  return res
27
 
28
+ # @st.cache
29
  def perform_cyberbullying_analysis(tweet):
30
  with st.spinner(text="loading model..."):
31