I am confused by the Rasa documentation about Lookup tables and if they help Intent classification or not.
- Reading about Lookup tables it seems like they are only meant for Entity extraction but
- In the documentation for Lookup tables it also states:
When lookup tables are supplied in training data, the contents are combined into a large, case-insensitive regex pattern that looks for exact matches in the training examples. These regexes match over multiple tokens, so lettuce wrap would match get me a lettuce wrap ASAP as [0 0 0 1 1 0]. These regexes are processed identically to the regular regex patterns directly specified in the training data.
- Reading the Regex features documentation it states:
Currently, all intent classifiers make use of available regex features.
So do Lookup tables help with intent classification or not?