Nucha commited on
Commit
2a7729d
·
verified ·
1 Parent(s): a6105ce

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -1,3 +1,7 @@
 
 
 
 
1
  import streamlit as st
2
  from transformers import AutoTokenizer, AutoModelForTokenClassification, pipeline
3
 
 
1
+ import os
2
+ os.system("python -m spacy download en_core_web_sm")
3
+
4
+
5
  import streamlit as st
6
  from transformers import AutoTokenizer, AutoModelForTokenClassification, pipeline
7