# Rasa embaddings WARNING rasa\_core.featurizers - Feature 'active\_form\_restaurant\_form' could not be found in feature map

**URL:** https://forum.rasa.com/t/rasa-embaddings-warning-rasa-core-featurizers-feature-active-form-restaurant-form-could-not-be-found-in-feature-map/3403
**Category:** Rasa Open Source
**Created:** [December 10, 2018, 12:32pm UTC](https://forum.rasa.com/t/rasa-embaddings-warning-rasa-core-featurizers-feature-active-form-restaurant-form-could-not-be-found-in-feature-map/3403 "2018-12-10T12:32:26Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![azizullah2017](https://dub1.discourse-cdn.com/flex013/user_avatar/forum.rasa.com/azizullah2017/32/241_2.png) [@azizullah2017](https://forum.rasa.com/u/azizullah2017)
#### Post date: [December 10, 2018, 12:32pm UTC](https://forum.rasa.com/t/rasa-embaddings-warning-rasa-core-featurizers-feature-active-form-restaurant-form-could-not-be-found-in-feature-map/3403/1 "2018-12-10T12:32:26Z")

</div>

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

```

---

<div class="post-metadata">

### Author: ![MetcalfeTom](https://dub1.discourse-cdn.com/flex013/user_avatar/forum.rasa.com/metcalfetom/32/1422_2.png) [@MetcalfeTom](https://forum.rasa.com/u/MetcalfeTom)
#### Post date: [December 17, 2018, 12:48pm UTC](https://forum.rasa.com/t/rasa-embaddings-warning-rasa-core-featurizers-feature-active-form-restaurant-form-could-not-be-found-in-feature-map/3403/2 "2018-12-17T12:48:04Z")

</div>

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?

---

<div class="post-metadata">

### Author: ![azizullah2017](https://dub1.discourse-cdn.com/flex013/user_avatar/forum.rasa.com/azizullah2017/32/241_2.png) [@azizullah2017](https://forum.rasa.com/u/azizullah2017)
#### Post date: [December 17, 2018, 12:50pm UTC](https://forum.rasa.com/t/rasa-embaddings-warning-rasa-core-featurizers-feature-active-form-restaurant-form-could-not-be-found-in-feature-map/3403/3 "2018-12-17T12:50:21Z")

</div>

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

```auto
policies:
  - name: EmbeddingPolicy
    epochs: 2000
    attn_shift_range: 5
  - name: FormPolicy 

```

---

<div class="post-metadata">

### Author: ![MetcalfeTom](https://dub1.discourse-cdn.com/flex013/user_avatar/forum.rasa.com/metcalfetom/32/1422_2.png) [@MetcalfeTom](https://forum.rasa.com/u/MetcalfeTom)
#### Post date: [December 18, 2018, 2:24pm UTC](https://forum.rasa.com/t/rasa-embaddings-warning-rasa-core-featurizers-feature-active-form-restaurant-form-could-not-be-found-in-feature-map/3403/4 "2018-12-18T14:24:35Z")

</div>

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

Could you also post your domain file?

---

<div class="post-metadata">

### Author: ![azizullah2017](https://dub1.discourse-cdn.com/flex013/user_avatar/forum.rasa.com/azizullah2017/32/241_2.png) [@azizullah2017](https://forum.rasa.com/u/azizullah2017)
#### Post date: [December 31, 2018, 9:47am UTC](https://forum.rasa.com/t/rasa-embaddings-warning-rasa-core-featurizers-feature-active-form-restaurant-form-could-not-be-found-in-feature-map/3403/5 "2018-12-31T09:47:39Z")

</div>

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

**- form{“name”: null}**

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

```

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

---

<div class="post-metadata">

### Author: ![MetcalfeTom](https://dub1.discourse-cdn.com/flex013/user_avatar/forum.rasa.com/metcalfetom/32/1422_2.png) [@MetcalfeTom](https://forum.rasa.com/u/MetcalfeTom)
#### Post date: [January 2, 2019, 1:23pm UTC](https://forum.rasa.com/t/rasa-embaddings-warning-rasa-core-featurizers-feature-active-form-restaurant-form-could-not-be-found-in-feature-map/3403/6 "2019-01-02T13:23:08Z")

</div>

Great to hear you fixed it!

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

---

<div class="post-metadata">

### Author: ![yhdrytjd](https://avatars.discourse-cdn.com/v4/letter/y/e480ec/32.png) [@yhdrytjd](https://forum.rasa.com/u/yhdrytjd)
#### Post date: [December 24, 2019, 2:04am UTC](https://forum.rasa.com/t/rasa-embaddings-warning-rasa-core-featurizers-feature-active-form-restaurant-form-could-not-be-found-in-feature-map/3403/7 "2019-12-24T02:04:13Z")

</div>

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