Mixed-initiative planning (MIP) is one approach to integrate or involve user through dialog management in the planning process, that is, in solving a user problem. Planning is the process of finding a sequence of actions that will achieve the goal given the initial state. PDDL (Planning Domain Definition Language) or its variant is used to describe the problem. Once the problem is fully describe in PDDL, we now know the four things about the problem: the initial state, the action that can be taken in any state, the result of taking such action and the goal state. Planning graph is a special data structure that represent those four things.
Decision tree is a multi-class classification tool allowing a data point to be classified into one of many (two or more) classes available. A decision tree divides the sample space into a rectilinear region. This will be more clear with an example. Let us say we have this auto-insurance claim related data as shown in the following table. We want to predict what type of customer profile may more likely lead to claim payout. The decision tree model may first divide the sample space based on age. So, now we have two regions divided based on the age. Next, one of those regions will further sub-divided based Marital_status, and then that newly divided sub-regision may further get divide based on Num_of_vehicle_owned. A decision tree is made up of a root node followed by intermediate node and leaf node. Each leaf node represents one of the class into which data points have been classified to. An intermediate node represents the decision rule based...
Comments
Post a Comment