Skip to content

Commit 433362a

Browse files
committed
Install spacy language model to perform POS tagging, Dependency parsing and NER
1 parent 76369e0 commit 433362a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ COPY requirements.txt /app
1717

1818
RUN pip install -r requirements.txt
1919

20+
# Install spacy model that can perform NLP tasks like parts of speech tagging, named entity recognition and dependency parsing
21+
RUN python -m spacy download en_core_web_sm
22+
2023
COPY start.sh /app/start.sh
2124
RUN chmod +x /app/start.sh
2225

0 commit comments

Comments
 (0)