Overlaping intents

Hi all :sunny: I have several intents like this:

- intent: area_response
  examples: |
    - The flat has [53](area) m2.
    - [84](area) m2
    - [32](area) m2
    - The area is [72](area)
    - The property has [32](area) m2.
    - The property has [58](area) squared meters.
    - [72](area)
    - [89](area) squared meters

- intent: number_of_rooms_response
  examples: |
    - The flat has [2](number_of_rooms) rooms.
    - [3](number_of_rooms)
    - [1](number_of_rooms) room
    - There are [5](number_of_rooms) rooms.
    - There is only [1](number_of_rooms) room.

- intent: floor_response
  examples: |
    - The flat is on the [2](floor) floor.
    - The apartament is located on the [5](floor) floor.
    - [5](floor)
    - [20](floor) floor.

And when I’m adding the floor_response intent, the chatbot stops working (the question about the floor is repeated endlessly). Is there something wrong with the intents? Are they overlapping?

Hi @Klaudia, you can use CLI rasa shell nlu to interpret the messages on the command line using your NLU model. This will give you the confidence of the intent prediction. If you’re not satisfied with the confidence, then you have to improve the training data.

You can also use Cross-Validation to evaluate your NLU model.

These should all be part of a single inform intent. The financial-demo bot shows an example.