Social cognitive optimization

From testwiki
Jump to navigation Jump to search

Social cognitive optimization (SCO) is a population-based metaheuristic optimization algorithm which was developed in 2002.[1] This algorithm is based on the social cognitive theory, and the key point of the ergodicity is the process of individual learning of a set of agents with their own memory and their social learning with the knowledge points in the social sharing library. It has been used for solving continuous optimization,[2][3] integer programming,[4] and combinatorial optimization problems. It has been incorporated into the NLPSolver extension of Calc in Apache OpenOffice.

Algorithm

Let f(x) be a global optimization problem, where x is a state in the problem space S. In SCO, each state is called a knowledge point, and the function f is the goodness function.

In SCO, there are a population of Nc cognitive agents solving in parallel, with a social sharing library. Each agent holds a private memory containing one knowledge point, and the social sharing library contains a set of NL knowledge points. The algorithm runs in T iterative learning cycles. By running as a Markov chain process, the system behavior in the tth cycle only depends on the system status in the (t − 1)th cycle. The process flow is in follows:

  • [1. Initialization]:Initialize the private knowledge point xi in the memory of each agent i, and all knowledge points in the social sharing library X, normally at random in the problem space S.
  • [2. Learning cycle]: At each cycle t (t=1,,T)
    • [2.1. Observational learning] For each agent i (i=1,,Nc)
      • [2.1.1. Model selection]:Find a high-quality model point xM in X(t) , normally realized using tournament selection, which returns the best knowledge point from randomly selected τB points.
      • [2.1.2. Quality Evaluation]:Compare the private knowledge point xi(t) and the model point xM,and return the one with higher quality as the base point xBase,and another as the reference point xRef
      • [2.1.3. Learning]:Combine xBase and xRef to generate a new knowledge point xi(t+1). Normally xi(t+1) should be around xBase,and the distance with xBase is related to the distance between xRef and xBase, and boundary handling mechanism should be incorporated here to ensure that xi(t+1)S.
      • [2.1.4. Knowledge sharing]:Share a knowledge point, normally xi(t+1), to the social sharing library X.
      • [2.1.5. Individual update]:Update the private knowledge of agent i, normally replace xi(t) by xi(t+1). Some Monte Carlo types might also be considered.
    • [2.2. Library Maintenance]:The social sharing library using all knowledge points submitted by agents to update X(t) into X(t+1). A simple way is one by one tournament selection: for each knowledge point submitted by an agent, replace the worse one among τW points randomly selected from X(t).
  • [3. Termination]:Return the best knowledge point found by the agents.

SCO has three main parameters, i.e., the number of agents Nc, the size of social sharing library NL, and the learning cycle T. With the initialization process, the total number of knowledge points to be generated is NL+Nc*(T+1), and is not related too much with NL if T is large.

Compared to traditional swarm algorithms, e.g. particle swarm optimization, SCO can achieving high-quality solutions as Nc is small, even as Nc=1. Nevertheless, smaller Nc and NL might lead to premature convergence. Some variants [5] were proposed to guaranteed the global convergence. One can also make a hybrid optimization method using SCO combined with other optimizers. For example, SCO was hybridized with differential evolution to obtain better results than individual algorithms on a common set of benchmark problems.[6]

References

Template:Reflist

  1. Cite error: Invalid <ref> tag; no text was provided for refs named xzy02sco
  2. Cite error: Invalid <ref> tag; no text was provided for refs named xz04sco
  3. Cite error: Invalid <ref> tag; no text was provided for refs named xu2011reactive
  4. Cite error: Invalid <ref> tag; no text was provided for refs named fan10scoip
  5. Cite error: Invalid <ref> tag; no text was provided for refs named sun2014guaranteed
  6. Template:Cite journal