Case insensitivy

Is it possible to make the whole pipeline case insensitive?

I have my config.yml like this

image

I’m not finding a lot of examples of how to do this.

yes. You can configure the Whitespace Tokenizer to be case insensitive. Just try out this as pipeline config.

- name: "WhitespaceTokenizer"
  case_sentitive: false
- name: "RegexFeaturizer"
- name: "CRFEntityExtractor"
- name: "EntitySynonymMapper"
- name: "CountVectorsFeaturizer"
- name: "CountVectorsFeaturizer"
  analyzer: "char_wb"
  min_ngram: 1
  max_ngram: 4
- name: "EmbeddingIntentClassifier"