Trouble using ConveRTFeaturizer - Rasa Open Source - Rasa Community Forum

👋 Introducing the Rasa Playground

Trouble using ConveRTFeaturizer

post by bferster on Oct 17, 2021

I am trying to use the ConveRTFeaturizer in my pipeline, but apparently it needs a model to run. Where can I find that?

I’m using Colab and have successfully run pip3 install rasa[convert]

pipeline:
 - name: ConveRTFeaturizer
   model_url: None
 - name: DIETClassifier
   epochs: 100

post by nik202 on Oct 17, 2021

@bferster Hello, Bill I guess you need to see this link: GitHub - PolyAI-LDN/polyai-models | RasaHQ/rasa 2.0.3 on GitHub. I guess it’s not available now.

CAUTION

Since the public URL of the ConveRT model was taken offline recently, it is now mandatory to set the parameter model_url to a community/self-hosted URL or path to a local directory containing model files.

Ref link: Overview | Rasa Documentation

- name: ConveRTTokenizer
  model_url: https://github.com/connorbrinton/polyai-models/releases/download/v1.0/model.tar.gz
- name: ConveRTFeaturizer
  model_url: https://github.com/connorbrinton/polyai-models/releases/download/v1.0/model.tar.gz

post by bferster on Oct 17, 2021

The worked perfectly. Thanks so much!

post by nik202 on Oct 17, 2021

@bferster Glad it work for you , please close this thread for other readers and for your own reference!