removed installs
Browse files
app.py
CHANGED
@@ -1,10 +1,7 @@
|
|
1 |
-
!pip install -U spacy==3.0.0
|
2 |
-
!pip install gradio
|
3 |
-
|
4 |
import spacy
|
5 |
import gradio as gr
|
6 |
|
7 |
-
|
8 |
|
9 |
nlp = spacy.load("en_core_web_lg")
|
10 |
def ner(text):
|
|
|
|
|
|
|
|
|
1 |
import spacy
|
2 |
import gradio as gr
|
3 |
|
4 |
+
#!python3 -m spacy download en_core_web_lg
|
5 |
|
6 |
nlp = spacy.load("en_core_web_lg")
|
7 |
def ner(text):
|