I'm trying to configure Rasa to use models pretrained at HuggingFace. This is my setup
language: fr
pipeline:
- name: LanguageModelTokenizer
- name: LanguageModelFeaturizer
model_name: "bert"
model_weights: "setu4993/LaBSE"
cache_dir: "/rasa/model"
After I run “rasa train”, it says OSError: Model name “setu4993/LaBSE” was not found. Any idea how to integrate this huggingface model to Rasa?
Can we include multiple HuggingFace pipeline in Rasa configuration? Example
pipeline:
- model_name: "bert"
...
- model_name: "xlnet"