I'm trying to get LUIS to learn something pretty straightforward: "2 waters" So, I
- Set a number built in an entity
- Created a list object that contains the word water among its members
- A composite object is created that contains both a number and list objects
Then I go and check the intent with statements that include the words "2 waters", and it recognizes the number and list of entities, but separately, and does not allow me to combine it into my parent composite at the same time (only separately).

source
share