1

I am several days testing Rasa-NLU, which internally uses spaCy. I had a great disappointment about the Portuguese language. Trying to figure out how to improve the training data, I found an excellent script comparing spaCy with udpipe that can be checked in this link and also in the image below.

enter image description here

I would like to know if I can continue using Rasa-NLU, but replace the engine spaCy for udpipe?

luisdemarchi
  • 1,402
  • 19
  • 29
  • You might want to ask this on the [github page](https://github.com/bnosac/udpipe) of the udpipe developer . I know you can use `as_conllu` which converts spacyr output to conllu format, but not if you can use it the other way. – phiver May 03 '18 at 17:22
  • @phiver I asked the Rasa team, they ruled out the UDPipe for not having vectors. – luisdemarchi May 04 '18 at 00:11

1 Answers1

0

Since Rasa is open-source it's very easy customizable. In your case you could build your own NLU component as it's described in this blog post.

Tobias
  • 1,880
  • 11
  • 17