Spacy model 'en_core_web_trf ' not working

Hi Team,

I would like to use Spacy’s transformers model in the Rasa pipeline. en_core_web_trf is able to extract person names (Entity) that are not able to extract using en_core_web_lg.

pipeline:
  - name: SpacyNLP
    model: en_core_web_lg
  - name: SpacyTokenizer
  - name: SpacyFeaturizer
  - name: DIETClassifier
    epochs: 100

Instead of en_core_web_lg if I use en_core_web_trf and train rasa chatbot. chatbot failed to identify ant intent and entity.

Couldn’t find what is wrong. Does Rasa supports **en_core_web_trf** ? can anyone help?

Thanks.