bferster
(Bill Ferster)
October 17, 2021, 1:19pm
1
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
nik202
(NiK202)
October 17, 2021, 1:55pm
2
@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
bferster
(Bill Ferster)
October 17, 2021, 3:40pm
3
The worked perfectly. Thanks so much!
nik202
(NiK202)
October 17, 2021, 3:57pm
4
@bferster Glad it work for you , please close this thread for other readers and for your own reference!