Issue with a policy in rasa

I have made one chatbot by seeing the example of resturant demo. I am using memoization policy since I have fixed set of actions with fixed set of entities.

Now when i am running the bot and it is enable to fire an action based on identified intent and entity. It says: rasa.core.policies.ensemble - Predicted next action using policy_2_RestaurantPolicy

and it is using some other action ang giving somw wrong answer. How can i disable “policy_2_RestaurantPolicy”

The RestaurantPolicy is an additional build policy based on the KerasPolicy. You can just remove this policy from your config.yml. Override the policies section of you config.yml with this:

policies:
  - name: MemoizationPolicy
  - name: MappingPolicy