Trouble using ConveRTFeaturizer

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

@bferster Hello, Bill I guess you need to see this link: https://github.com/PolyAI-LDN/polyai-models#convert | 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: Components

@bferster Please try this link if it work.

- 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

The worked perfectly. Thanks so much!

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