0

I'm trying to load a custom spacy-udpipe model into google colab. I tried

!pip install ufal.udpipe

!pip install spacy-udpipe

import spacy_udpipe

nlp = udpipe_download_model(language = ("italian-postwita"))


but I get the following error message : NameError: name 'udpipe_download_model' is not defined.

Anyone can help? thanks

Raqib
  • 1,367
  • 11
  • 24
komy83
  • 1

1 Answers1

0
import spacy_udpipe

spacy_udpipe.download("name_of_model_to_download")
Raqib
  • 1,367
  • 11
  • 24