From 08d8e69d6cc5b19a65f28aca90bd46e4b645827e Mon Sep 17 00:00:00 2001 From: Jay Liu Date: Fri, 12 Jun 2020 13:45:39 +1000 Subject: [PATCH] install spacy english model the torchtext spacy tokenize needs to install the 'en' model to run --- 1 - Simple Sentiment Analysis.ipynb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/1 - Simple Sentiment Analysis.ipynb b/1 - Simple Sentiment Analysis.ipynb index 9e8c4b1..a9275c0 100644 --- a/1 - Simple Sentiment Analysis.ipynb +++ b/1 - Simple Sentiment Analysis.ipynb @@ -42,6 +42,8 @@ "`LABEL` is defined by a `LabelField`, a special subset of the `Field` class specifically used for handling labels. We will explain the `dtype` argument later.\n", "\n", "For more on `Fields`, go [here](https://github.com/pytorch/text/blob/master/torchtext/data/field.py).\n", + "\n" + "To download Spacy English Model you need to run this command: python -m spacy download en" "\n", "We also set the random seeds for reproducibility. " ]