davidberenstein1957 / crosslingual-coreference

A multi-lingual approach to AllenNLP CoReference Resolution along with a wrapper for spaCy.
MIT License
103 stars 17 forks source link

Download of "info_xlm" fails due to permission error #29

Open rainergo opened 2 months ago

rainergo commented 2 months ago

I tried to:

nlp = spacy.load("de_core_news_lg")

model_name = "info_xlm"

nlp.add_pipe("xx_coref", config={"chunk_size": 2500, "chunk_overlap": 2, "model_name": model_name})

but got this error:

<?xml version='1.0' encoding='UTF-8'?><Error><Code>AccessDenied</Code><Message>Access denied.</Message><Details>Anonymous caller does not have storage.objects.get access to the Google Cloud Storage object. Permission 'storage.objects.get' denied on resource (or it may not exist).</Details></Error>

It works with model_name = "minilm" though.