Checkpoint Example - Rasa Open Source - Rasa Community Forum

Checkpoint Example

post by adrianhumphrey111 on Dec 10, 2018

Could someone please provide me with an example of how to use checkpoints? I am confused as to where we define the actual checkpoint. For example in:

## first story
- hello
  - action_ask_user_question
> check_asked_question

## user affirms question
> check_asked_question
- affirm
  - action_handle_affirmation

## user denies question
> check_asked_question
- deny
  - action_handle_denial

Where is the check_asked_question actually defined? What is it? I know it's a repeated story example, however, where do I create it?

post by MetcalfeTom on Dec 17, 2018

Hey @adrianhumphrey111,

The checkpoint is created by the first story which finishes with it. When training the core model, all training stories are glued together by checkpoints, duplicating where necessary to create separate dialogues to learn from. Your example works perfectly as implemented!