Rasa embaddings WARNING rasa_core.featurizers - Feature 'active_form_restaurant_form' could not be found in feature map

2018-12-10 16:09:57 WARNING  rasa_core.featurizers - Feature 'active_form_restaurant_form' could not be found in feature map.

Hi @azizullah2017,

Looks like you’re trying to implement a form, correct? Have you included FormPolicy in your policy config? And added the form to the domain?

@MetcalfeTom this for the reply, Yes I have used. I think I am missing something in stories.

policies:
  - name: EmbeddingPolicy
    epochs: 2000
    attn_shift_range: 5
  - name: FormPolicy 
1 Like

Sure, post a snippet of your stories file and I’ll take a look

Could you also post your domain file?

1 Like

@MetcalfeTom there was issue from my side. I was missing the .

- form{“name”: null}

*Order
    - order_form
    - form{"name": "order_form"}
    - form{"name": null} 

and I do not know why It is needed ( form{“name”: null} )

Great to hear you fixed it!

The line is needed to deactivate the form, so that FormPolicy will not predict the next action.

Is form featurized? My project is going to use a lot of forms. It is impossible to put all of them into stories.