Trying to download polyglot packages, with:
polyglot_tasks = [u'embeddings2',
u'counts2',
u'pos2',
u'ner2',
u'sentiment2',
u'morph2',
u'tsne2',
u'sgns2',
u'transliteration2',
u'uniemb',
u'unipos']
for task in polyglot_tasks:
print("POLYGLOT task:", task)
text = "TASK:" + task
downloader.download(text, quiet=True)
downloader.list(show_packages=False)
However, I get HTTP Error 403, like this:
[polyglot_data] Error loading embeddings2.en: HTTP Error 403:
[polyglot_data] Forbidden
Why is this happening and how can I solve this problem?
Hello,
Trying to download polyglot packages, with: polyglot_tasks = [u'embeddings2', u'counts2', u'pos2', u'ner2', u'sentiment2', u'morph2', u'tsne2', u'sgns2', u'transliteration2', u'uniemb', u'unipos'] for task in polyglot_tasks: print("POLYGLOT task:", task) text = "TASK:" + task downloader.download(text, quiet=True) downloader.list(show_packages=False) However, I get HTTP Error 403, like this: [polyglot_data] Error loading embeddings2.en: HTTP Error 403: [polyglot_data] Forbidden Why is this happening and how can I solve this problem?