Decision Making

Imitation

The system learns through imitation.
Decision are simply imitation of certain selected experience and decide the steps involved to accomplish that decision.

Decision Steps:


POI Selection

POI Selection comprises of these deciding criteria:

Whether to choose unique route

To ensure the system don’t go into dead loop by encouraging it to pick on unique route whenever possible to diversify learning experiences.

If globalDist > 25 && globalDist < 75 then prefer unique route.
If prefer unique route, select route where timeRan is low.

Relevance against global trend

To ensure selected POI is relevant to current global trend.

Do so by deducting the potential routes’ polyVal against current Global Distribution.
The less distance the better.

Central Tendency

From the distance, if they are same, prefer the one that incline towards center.

Operation Depth

Reorder again based on operation depth (steps).
The higher the depth the better, as it shows the experience to be resimulated is much more abstract.

They must have equal timeRan in order to prove that they are high leveled but in conflict, then check whether they share the same depth, choose the one with the lowest depth as they are more unique than anything else, a solution that is less popular than common mind and yet special enough to have so less timeRan.


Generate Solution Tree

Traverse from the selected POI, find the best path using the same decision logic AND viability.
Viability can be determined from WM, by checking whether the particular requirement is possible to exist in the next step by recursively checking it using previous experiences, compare and see if possible.

Short circuit decision making can be done by traversing only the possible route with limited depth, so it don’t expand and seek all possible route, although better route might exist there but instead speed up the decision process by selecting only the best from few that come to mind first.
If time allow, full expand will be best.


Execute Solution Tree

Basically just execute all the action specified in the solution tree and compare whether similar patterns reoccurs (PaRc).


These processes will go on forever iteratively and it will create a mind system that is tolerant to unexpected situation with quick thinking to resolve it and get back on track to finish its task, able to accustom to any places as it doesn’t requires any prerequisite to learn.

Experience are cross collate able thus can be reused on different occasions and as it is built up from scratch and pile up on experience.

With default inclination toward uniqueness (curiosity), it enable the system to be on constant learning phrase and promote creativity.

Together it allows ultimate generalization, abstract thinking, creativity and traits formulation to take place.