"grant any rights to the data files or database")
print("Downloading Spacy model...")
spacy_download(model)
self.parser = spacy.load(model, disable=pipeline_opts)
else:
print("Download declined. Response received {} != YES. ".format(response))
print("Please download the model manually")
sys.exit(0)
After Change
print("Spacy English model not found".format(model))
print("to download an English model using Spacy, please run:")
print(" python -m spacy download en_core_web_sm")
print("")
print("Spacy license: MIT")
print("Link to license: https://github.com/explosion/spaCy/blob/master/LICENSE")
print("The terms and conditions of the data set license apply. Intel does not "
"grant any rights to the data files or database")