<?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>
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.