Daniil Larionov commited on
Commit
9c1813e
·
unverified ·
1 Parent(s): 47dc1b5

removed caching

Browse files
Files changed (1) hide show
  1. app.py +0 -1
app.py CHANGED
@@ -2,7 +2,6 @@ import streamlit as st
2
  import transformers as tr
3
  import spacy as sp
4
 
5
- @st.cache
6
  def load_pipeline(name: str):
7
  return tr.pipeline('token-classification', model=name)
8
 
 
2
  import transformers as tr
3
  import spacy as sp
4
 
 
5
  def load_pipeline(name: str):
6
  return tr.pipeline('token-classification', model=name)
7