Demo Decision Tree

With this rule based decision tree, it will be clear to the team, on how a decision is make. This is NOT an AI model, it's rule based decision making system
Example Use Case:
  1. Simple and straightforward way to determine what CATEGORY to be shown in e-commerce platform based on parameter available
  2. For movie streaming site, this can help to determine how what TYPE OF MOVIE can be shown on main page on historical data, age, gender and movie preference
  3. For Telco, this can be used to suggest what NEW PLAN is suitable for the customer
  4. In financing world, this can be used to suggest HOW MUCH MONEY can be loaned to a customer
  5. More ...
Example, let say a Telco has 5 new plans that will be replacing the current active plans. Telco will usually approach their existing customer and convince them to get the new plan and lock them for 1 - 2 years.
With this rule based decision making system, we will first need to define a list of parameter that can be used to decide the suggested new plan for each customer.
  • Current plan price
  • Current plan data available
  • Current plan free Voice Call
  • Current plan free SMS
Example Decision Tree #1 Test It

Q: Why do I need this if I can just hardcode it?
A: This provide more visibility on how system decide what plan is suitable for each customer. The product team or your boss will not keep asking you why this customer is suggested with certain plan

Q: Why do I need this if I can just use excel?
A: Excel may require you to write some script or API call, to get the latest data from server. If you can build this into the portal or the CMS that is used by the product team or your boss, life will be much easier for them. This also allows you to easily add more parameter, for your product team to configure the rules without involving tech team