SlideShare ist ein Scribd-Unternehmen logo
1 von 34
Downloaden Sie, um offline zu lesen
A Combined Genetic Adaptive Search (GeneAS)
          for Engineering Design



    Kalyanmoy Deb and Mayank Goyal (India)

       Journal of Computer Science and Informatics, 1996
                    volume 26, page 30-45



                          Reviewed by

                      Paskorn Champrasert
                      paskorn@cs.umb.edu
                      http://dssg.cs.umb.edu
Outline
• Introduction
• Genetic Operations
    – Crossover (Binary Crossover, SBX Crossover)
    – Mutation
• GeneAS Algorithms
• Experiment Results
• Conclusion



 October 24, 08         DSSG Group Meeting          2/31
Introduction
• The aim in an engineering design problem is to
  minimize or maximize a design objective and
  satisfy constraints.
• The optimization problem can be expressed in the
  following form:

• The variable
  vector X
  represents a set
  of variables.
                       xi , i = 1, 2, , N
October 24, 08       DSSG Group Meeting          3/31
A Simple Cantilever beam design problem:
• A cantilever beam is a beam that is rigidly supported at
  one end and carries a certain load on the other end.
                      Design possibilities:
                      - Shape (circular or square)
                           binary design variable (0/1)
                      - Size
                        Diameter of circular shape
                        Side of square shape
                           discrete variable
                        because size are not available in any sizes
                      - Length
                           real variable
                        because we can cut beams at any length
                      - Material
                            discrete variable
                         (cast iron, aluminum, steel, brass)
  October 24, 08           DSSG Group Meeting                         4/31
Research Issues
• The optimization problem is involving with different types of
  variables.
  E.g.,
  - For the material variable
    if the steel is represented as 1 and cast iron is represented as 2,
         no intermediate value (e.g., 1.4 ) is allowed.
             binary-coded variable should be used.
  - For the beam length variable (0-100)
    if the length is represented by using 4 bit binary-coded variable
  (0000-1111). The precision of the variable is only 100/16 = 6.25
        no more precise value (e.g., 2.5) is allowed
            real-coded variable should be used.
• Designers must rely on an optimization algorithms which is
  flexible enough to handle a mixed type of variables

 October 24, 08               DSSG Group Meeting                          5/31
GeneAS
• The algorithm restricts its search only to the permissible
  values of the design variables.

• GeneAS uses a combination of binary-coded and real-
  coded GA, depending on the nature of the design
  variables.
     – Variables are coded differently
     – Genetic Operations (crossover and mutation) are performed
       differently for each variable.
        E.g.,
        - Beam length is real-coded variable
             real value crossover and real value mutation are used.
        - Beam diameter is binary-coded variable
            binary value crossover and real value mutation are used.

October 24, 08                DSSG Group Meeting                       6/31
Binary-Coded GA
• In a binary-coded GA, the variables are
  represented in binary strings formed with 1 and 0.
• Variables can be expressed as :
            ( b1b2b3…bn ) , bi is ether 1 or 0
• E.g., 7-bit string representing the diameter in the
  range of (3,130) mm, the precision in the solution
  is 1 mm
    (130-3)/(1111111B-0000000B)
    = 127/127 = 1mm

  October 24, 08        DSSG Group Meeting              7/31
Binary Genetic Operations
                               One-point Crossover
1       0        0      1
                                   1) A single crossover point on both parents
1       1        1      0          string is selected.
                                   2) All data beyond that crossover point in
                 Crossover point
                                   either parent is swapped between the two
1       0        1      0          parent organisms.

1       1        0      1          The resulting organisms are the offspring:



                                   Binary Mutation
1       1        1      0
                                    Each bit of offspring has a probability
1       1        0      0           (mutation rate) to flip (0 1 or 1 0)

October 24, 08                           DSSG Group Meeting                      8/31
Important Property of One-Point Crossover
1) The average of the decoded parameter values is
  the same before and after the crossover
  operation.

  1       0      0   1   9
                                    Average = 11.5
  1       1      1   0 14

  1       0      1   0   10
                                    Average = 11.5
  1       1      0   1   13

October 24, 08                DSSG Group Meeting     9/31
October 24, 08   DSSG Group Meeting   10/31
Important Property of One-Point Crossover
2) Spread factor:
   Spread factor β is defined as the ratio of the spread of
   offspring points to that of the parent points:
                              c1 −c2
                   β=       | p1 −p2 |
                                                                 c1   c2

- Contracting Crossover       β<1                          p1              p2
    The offspring points are enclosed by the parent points.

- Expanding Crossover         β>1                     c1                        c2

    The offspring points enclose the parent points.        p1              p2

- Stationary Crossover       β=1                                c1              c2
     The offspring points are the same as parent points         p1              p2
 October 24, 08               DSSG Group Meeting                            11/31
Spread Factor Property
• Assume parents strings are two strings:
     p1= (a1a2a3…a15)
     p2 = (b1b2b3…b15).
• The crossover point is varied from (0,15)
                     The probability distribution:
                     -- The probability of occurrence of β ≈ 1 is more likely than
                     any other β value.
                         If the parents are closer, the spread of the two likely
                     offspring is also smaller.
                         If the spread of parents is more, the spread of likely
                     offspring is also large.




  October 24, 08                 DSSG Group Meeting                             12/31
Real-Coded GA
• In a real-coded GA, the variables are represented in continuous
  variables.
• Variables can be expressed as :
               X , X is any number in [XL,XU]
               XL is lower bound ,XU is upper bound

• The binary-coded genetic operations cannot be used for real-coded
  variables.

• The genetic operations have to be modified in order to handle real-
  coded variables
  However, the proposed real-coded genetic operations should
  reserve the binary-coded genetic operation properties.


   October 24, 08             DSSG Group Meeting                      13/31
SBX
             Simulated Binary Crossover
• Simulated Binary Crossover (SBX) was proposed in
  1995 by Deb and Agrawal.

• SBX was designed with respect to the one-point
  crossover properties in binary-coded GA.
     – Average Property:
       The average of the decoded parameter values is the same
       before and after the crossover operation.
     – Spread Factor Property:
       The probability of occurrence of spread factor β ≈ 1 is more
       likely than any other β value.


October 24, 08               DSSG Group Meeting                       14/31
SBX – Offspring Value
To reserve the average property, the offspring values
 are calculated as:
  Offspring:                                                  c1   c2

            c1 = x − 1 β(p2 − p1 )
                 ¯ 2                  β<1                p1              p2

            c2 = x + 1 β(p2 − p1 )
                 ¯ 2
                                                   c1                    c2
    By,                               β>1
                   1
          x=
          ¯        2 (p1
                  + p2 )                                p1              p2
          p2 > p1
                                                        c1              c2
      So,
                                       β=1              p1              p2
            c=x
            ¯ ¯
  October 24, 08              DSSG Group Meeting                              15/31
Spread Factor (β) in SBX
• The probability distribution of β in SBX should be similar (e.g.
  same shape) to the probability distribution of β in Binary-coded
  crossover.
• This paper proposed probability                        c(β) = 0.5(n + 1)β n , β ≤ 1
  distribution function as:                                                   1
                                                         c(β) = 0.5(n + 1) β n+2 , β > 1
                                                                  1.6
                                                                  1.4




                                       Probability Distribution
                                                                  1.2
                                                                  1.0                   n=2
                                                                  0.8
                                                                  0.6
                                                                  0.4
                                                                  0.2
                                                                  0.0
                                                                        0   1   2   3    4    5   6     7
                                                                                    β



October 24, 08              DSSG Group Meeting                                                        16/31
A large value of n gives a higher
                              probability for creating ‘near-parent’
contracting                   solutions.
   c(β) = 0.5(n + 1)β n , β ≤ 1



                      expanding
                                            1
                       c(β) = 0.5(n + 1) β n+2 , β > 1




                                                 Mostly, n=2 to 5
October 24, 08              DSSG Group Meeting                    17/31
Spread Factor (β) as a random number
          • β is a random number that follows the proposed
            probability distribution function:
                           1.6
                           1.4
                                                                         To get a β value,
Probability Distribution




                           1.2
                                                                         1) A unified random number u
                                                     n=2
                                                                            is generated [0,1]
                           1.0
                           0.8
                           0.6                                           2) Get β value that makes the
                           0.4
                           0.2
                                                                            area under the curve = u
                           0.0
                                     u
                                 0   1       2   3    4    5   6     7
                                                 β                          Offspring:
                                         β
                                                                                    c1 = x − 1 β(p2 − p1 )
                                                                                         ¯ 2
                                                                                    c2 = x + 1 β(p2 − p1 )
                                                                                         ¯ 2
                    October 24, 08                                 DSSG Group Meeting                   18/31
Real Mutation
• Mutation probability (pm) in (0,1) is applied to each
  variable.
• For each variable
      If a unified random number um in (0,1) < pm
  mutation operator is performed for the variable.
                                                 p: parent
                                                 c: offspring

                         It represent the maximum permissible change
                         in the parent

    ¯
    δ      is a random number. Its probability distribution function is:


October 24, 08                  DSSG Group Meeting                         19/31
¯
     ± is generated the same process as the      β

October 24, 08              DSSG Group Meeting       20/31
Combined GA (GeneAS)
• GeneAS
     – Each variable is coded depending on its nature.
     – The crossover operator and mutation operator have
       to be applied variable by variable.
           • If it is a binary-coded variable, the binary-genetic
             operations are performed
           • If it is a real-coded variable, the real-genetic operations are
             performed.
     – The fitness function and constraint function are
       calculated as normal.


October 24, 08                   DSSG Group Meeting                       21/31
*reproduction = selection mechanism
October 24, 08   DSSG Group Meeting                    22/31
Experiments
• Two different problems are solved using GeneAS.
• Two different problems were solved using different
  traditional optimization algorithms.
      - Lagrange multiplier method
           by Kannan and Kramer 1993
      - Branch and Bound method
             by Sandgren 1988
• GeneAS
      Crossover Probability =0.9
       Mutation Probability =0
      Selection mechanism = ?
      Population size =50
      Max generation =?

October 24, 08         DSSG Group Meeting              23/31
Gear Train Design




October 24, 08        DSSG Group Meeting   24/31
• Since, all the four variables are discrete, each
  variable is coded in six-bit binary string (64
  values), so that variables take values between 12
  and 75.
• Four constraints are added to the objective
  function.




October 24, 08       DSSG Group Meeting           25/31
Result




GeneAS have found much better solutions than the
 previously known optimal solutions.
October 24, 08      DSSG Group Meeting         26/31
Welded Beam Design
• A rectangular beam needs to be welded as a
  cantilever beam to carry a certain load.
• The objective of the design of the welded beam
  is to minimize the overall cost of the fabrication
  which involves the cost of beam material and the
  cost of weld deposit.
• Two different welding configurations can be
  applied.
    (1 is used for four-sided welding and 0 is used
  for two-sided welding) : X1
October 24, 08         DSSG Group Meeting          27/31
• One of the four materials can be used
     – (00-steel, 01-cast iron, 10-aluminum, 11-brass): X2
•   h : X3
•   t : X4
•   b : X5
•   l : X6




October 24, 08            DSSG Group Meeting                 28/31
October 24, 08   DSSG Group Meeting   29/31
Results
 X1          = Four-sided X2 =Steel
 X3          =0.1875 X4 =8.2500 X5 =0.2500 X6 =1.6849

 g1(x)       =380.1660
 g2(x)       =402.0473
 g3(x)       = 0.2346
 g4(x)       = 0.1621

     F(x) =1.9622




October 24, 08             DSSG Group Meeting           30/31
Conclusions
• This paper presents a proposed genetic
  algorithms for engineering optimization
  problems.
• The type variable can be different.
• SBX and real-mutation is proposed.
• The results show that GeneAS can find very
  good optimal solutions.



October 24, 08      DSSG Group Meeting         31/31
Discrete Variables




October 24, 08         DSSG Group Meeting   32/31
SBX




October 24, 08   DSSG Group Meeting   33/31
BLX-α
    • Blend Crossover (BLX-α) was proposed by Eshelman and
      Schaffer (1993)
    • BLX-α operator is used for real-parameter GAs.
    • α represents a constant. (0,1)
    • For two parents x1 and x2 (assume x1 < x2)
    • BLX-α randomly picks a solution in the range
      [x1- α(x2-x1) , x2+ α(x2-x1) ]
                                                 Possible offspring

                              x1       x2
                      α(x2-x1)           α(x2-x1)

    • The investigators have reported that BLX-0.5 (α=0.5)
    performs better than BLX operators with other α value.

October 24, 08              DSSG Group Meeting                        34/31

Weitere ähnliche Inhalte

Was ist angesagt?

Genetic algorithms
Genetic algorithmsGenetic algorithms
Genetic algorithmszamakhan
 
Multi Objective Optimization and Pareto Multi Objective Optimization with cas...
Multi Objective Optimization and Pareto Multi Objective Optimization with cas...Multi Objective Optimization and Pareto Multi Objective Optimization with cas...
Multi Objective Optimization and Pareto Multi Objective Optimization with cas...Aditya Deshpande
 
Multi Objective Optimization
Multi Objective OptimizationMulti Objective Optimization
Multi Objective OptimizationNawroz University
 
Genetic algorithm
Genetic algorithmGenetic algorithm
Genetic algorithmgarima931
 
Introduction to Genetic Algorithms
Introduction to Genetic AlgorithmsIntroduction to Genetic Algorithms
Introduction to Genetic AlgorithmsAhmed Othman
 
Large Language Models Are Reasoning Teachers
Large Language Models Are Reasoning TeachersLarge Language Models Are Reasoning Teachers
Large Language Models Are Reasoning TeachersNamgyu Ho
 
Multiobjective optimization and trade offs using pareto optimality
Multiobjective optimization and trade offs using pareto optimalityMultiobjective optimization and trade offs using pareto optimality
Multiobjective optimization and trade offs using pareto optimalityAmogh Mundhekar
 
Tips and tricks to win kaggle data science competitions
Tips and tricks to win kaggle data science competitionsTips and tricks to win kaggle data science competitions
Tips and tricks to win kaggle data science competitionsDarius Barušauskas
 
[AIoTLab]attention mechanism.pptx
[AIoTLab]attention mechanism.pptx[AIoTLab]attention mechanism.pptx
[AIoTLab]attention mechanism.pptxTuCaoMinh2
 
Parallel Algorithm for Graph Coloring
Parallel Algorithm for Graph Coloring Parallel Algorithm for Graph Coloring
Parallel Algorithm for Graph Coloring Heman Pathak
 
14/01/20 "Engineering Optimization in Aircraft Design" Aerodynamic Design at ...
14/01/20 "Engineering Optimization in Aircraft Design" Aerodynamic Design at ...14/01/20 "Engineering Optimization in Aircraft Design" Aerodynamic Design at ...
14/01/20 "Engineering Optimization in Aircraft Design" Aerodynamic Design at ...Masahiro Kanazaki
 
Multiobjective optimization and Genetic algorithms in Scilab
Multiobjective optimization and Genetic algorithms in ScilabMultiobjective optimization and Genetic algorithms in Scilab
Multiobjective optimization and Genetic algorithms in ScilabScilab
 
What is the Expectation Maximization (EM) Algorithm?
What is the Expectation Maximization (EM) Algorithm?What is the Expectation Maximization (EM) Algorithm?
What is the Expectation Maximization (EM) Algorithm?Kazuki Yoshida
 
Adversarial search with Game Playing
Adversarial search with Game PlayingAdversarial search with Game Playing
Adversarial search with Game PlayingAman Patel
 
Convex optimization methods
Convex optimization methodsConvex optimization methods
Convex optimization methodsDong Guo
 

Was ist angesagt? (20)

Genetic algorithms
Genetic algorithmsGenetic algorithms
Genetic algorithms
 
Differential evolution optimization technique
Differential evolution optimization techniqueDifferential evolution optimization technique
Differential evolution optimization technique
 
Multi Objective Optimization and Pareto Multi Objective Optimization with cas...
Multi Objective Optimization and Pareto Multi Objective Optimization with cas...Multi Objective Optimization and Pareto Multi Objective Optimization with cas...
Multi Objective Optimization and Pareto Multi Objective Optimization with cas...
 
Multi Objective Optimization
Multi Objective OptimizationMulti Objective Optimization
Multi Objective Optimization
 
Genetic algorithm
Genetic algorithmGenetic algorithm
Genetic algorithm
 
Introduction to Genetic Algorithms
Introduction to Genetic AlgorithmsIntroduction to Genetic Algorithms
Introduction to Genetic Algorithms
 
Large Language Models Are Reasoning Teachers
Large Language Models Are Reasoning TeachersLarge Language Models Are Reasoning Teachers
Large Language Models Are Reasoning Teachers
 
Differential evolution
Differential evolutionDifferential evolution
Differential evolution
 
Multiobjective optimization and trade offs using pareto optimality
Multiobjective optimization and trade offs using pareto optimalityMultiobjective optimization and trade offs using pareto optimality
Multiobjective optimization and trade offs using pareto optimality
 
Ga ppt (1)
Ga ppt (1)Ga ppt (1)
Ga ppt (1)
 
Genetic Algorithm
Genetic AlgorithmGenetic Algorithm
Genetic Algorithm
 
Tips and tricks to win kaggle data science competitions
Tips and tricks to win kaggle data science competitionsTips and tricks to win kaggle data science competitions
Tips and tricks to win kaggle data science competitions
 
[AIoTLab]attention mechanism.pptx
[AIoTLab]attention mechanism.pptx[AIoTLab]attention mechanism.pptx
[AIoTLab]attention mechanism.pptx
 
Parallel Algorithm for Graph Coloring
Parallel Algorithm for Graph Coloring Parallel Algorithm for Graph Coloring
Parallel Algorithm for Graph Coloring
 
14/01/20 "Engineering Optimization in Aircraft Design" Aerodynamic Design at ...
14/01/20 "Engineering Optimization in Aircraft Design" Aerodynamic Design at ...14/01/20 "Engineering Optimization in Aircraft Design" Aerodynamic Design at ...
14/01/20 "Engineering Optimization in Aircraft Design" Aerodynamic Design at ...
 
Multiobjective optimization and Genetic algorithms in Scilab
Multiobjective optimization and Genetic algorithms in ScilabMultiobjective optimization and Genetic algorithms in Scilab
Multiobjective optimization and Genetic algorithms in Scilab
 
What is the Expectation Maximization (EM) Algorithm?
What is the Expectation Maximization (EM) Algorithm?What is the Expectation Maximization (EM) Algorithm?
What is the Expectation Maximization (EM) Algorithm?
 
The Transformer - Xavier Giró - UPC Barcelona 2021
The Transformer - Xavier Giró - UPC Barcelona 2021The Transformer - Xavier Giró - UPC Barcelona 2021
The Transformer - Xavier Giró - UPC Barcelona 2021
 
Adversarial search with Game Playing
Adversarial search with Game PlayingAdversarial search with Game Playing
Adversarial search with Game Playing
 
Convex optimization methods
Convex optimization methodsConvex optimization methods
Convex optimization methods
 

Ähnlich wie Simulated Binary Crossover

Multidisciplinary Design Optimization of Supersonic Transport Wing Using Surr...
Multidisciplinary Design Optimization of Supersonic Transport Wing Using Surr...Multidisciplinary Design Optimization of Supersonic Transport Wing Using Surr...
Multidisciplinary Design Optimization of Supersonic Transport Wing Using Surr...Masahiro Kanazaki
 
PR-297: Training data-efficient image transformers & distillation through att...
PR-297: Training data-efficient image transformers & distillation through att...PR-297: Training data-efficient image transformers & distillation through att...
PR-297: Training data-efficient image transformers & distillation through att...Jinwon Lee
 
Condition Monitoring Of Unsteadily Operating Equipment
Condition Monitoring Of Unsteadily Operating EquipmentCondition Monitoring Of Unsteadily Operating Equipment
Condition Monitoring Of Unsteadily Operating EquipmentJordan McBain
 
Randomness conductors
Randomness conductorsRandomness conductors
Randomness conductorswtyru1989
 
A Measure Of Independence For A Multifariate Normal Distribution And Some Con...
A Measure Of Independence For A Multifariate Normal Distribution And Some Con...A Measure Of Independence For A Multifariate Normal Distribution And Some Con...
A Measure Of Independence For A Multifariate Normal Distribution And Some Con...ganuraga
 
A Measure Of Independence For A Multifariate Normal Distribution And Some Con...
A Measure Of Independence For A Multifariate Normal Distribution And Some Con...A Measure Of Independence For A Multifariate Normal Distribution And Some Con...
A Measure Of Independence For A Multifariate Normal Distribution And Some Con...gueste63bd9
 
28. distance formulatemplatetouchpad
28. distance formulatemplatetouchpad28. distance formulatemplatetouchpad
28. distance formulatemplatetouchpadMedia4math
 
Incremental and parallel computation of structural graph summaries for evolvi...
Incremental and parallel computation of structural graph summaries for evolvi...Incremental and parallel computation of structural graph summaries for evolvi...
Incremental and parallel computation of structural graph summaries for evolvi...Till Blume
 
On recent improvements in the conic optimizer in MOSEK
On recent improvements in the conic optimizer in MOSEKOn recent improvements in the conic optimizer in MOSEK
On recent improvements in the conic optimizer in MOSEKedadk
 
Lecture6
Lecture6Lecture6
Lecture6voracle
 
IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...ijceronline
 
On the Scalability of Graph Kernels Applied to Collaborative Recommenders
On the Scalability of Graph Kernels Applied to Collaborative RecommendersOn the Scalability of Graph Kernels Applied to Collaborative Recommenders
On the Scalability of Graph Kernels Applied to Collaborative RecommendersJérôme KUNEGIS
 
GRUPO 5 : novel fuzzy logic based edge detection technique
GRUPO 5 :  novel fuzzy logic based edge detection techniqueGRUPO 5 :  novel fuzzy logic based edge detection technique
GRUPO 5 : novel fuzzy logic based edge detection techniqueviisonartificial2012
 
study Domain Transform for Edge-Aware Image and Video Processing
study Domain Transform for Edge-Aware Image and Video Processingstudy Domain Transform for Edge-Aware Image and Video Processing
study Domain Transform for Edge-Aware Image and Video ProcessingChiamin Hsu
 
Attention is All You Need (Transformer)
Attention is All You Need (Transformer)Attention is All You Need (Transformer)
Attention is All You Need (Transformer)Jeong-Gwan Lee
 
Applied Deep Learning 11/03 Convolutional Neural Networks
Applied Deep Learning 11/03 Convolutional Neural NetworksApplied Deep Learning 11/03 Convolutional Neural Networks
Applied Deep Learning 11/03 Convolutional Neural NetworksMark Chang
 

Ähnlich wie Simulated Binary Crossover (20)

Multidisciplinary Design Optimization of Supersonic Transport Wing Using Surr...
Multidisciplinary Design Optimization of Supersonic Transport Wing Using Surr...Multidisciplinary Design Optimization of Supersonic Transport Wing Using Surr...
Multidisciplinary Design Optimization of Supersonic Transport Wing Using Surr...
 
PR-297: Training data-efficient image transformers & distillation through att...
PR-297: Training data-efficient image transformers & distillation through att...PR-297: Training data-efficient image transformers & distillation through att...
PR-297: Training data-efficient image transformers & distillation through att...
 
Condition Monitoring Of Unsteadily Operating Equipment
Condition Monitoring Of Unsteadily Operating EquipmentCondition Monitoring Of Unsteadily Operating Equipment
Condition Monitoring Of Unsteadily Operating Equipment
 
Interactive High-Dimensional Visualization of Social Graphs
Interactive High-Dimensional Visualization of Social GraphsInteractive High-Dimensional Visualization of Social Graphs
Interactive High-Dimensional Visualization of Social Graphs
 
Randomness conductors
Randomness conductorsRandomness conductors
Randomness conductors
 
A Measure Of Independence For A Multifariate Normal Distribution And Some Con...
A Measure Of Independence For A Multifariate Normal Distribution And Some Con...A Measure Of Independence For A Multifariate Normal Distribution And Some Con...
A Measure Of Independence For A Multifariate Normal Distribution And Some Con...
 
A Measure Of Independence For A Multifariate Normal Distribution And Some Con...
A Measure Of Independence For A Multifariate Normal Distribution And Some Con...A Measure Of Independence For A Multifariate Normal Distribution And Some Con...
A Measure Of Independence For A Multifariate Normal Distribution And Some Con...
 
TunUp final presentation
TunUp final presentationTunUp final presentation
TunUp final presentation
 
28. distance formulatemplatetouchpad
28. distance formulatemplatetouchpad28. distance formulatemplatetouchpad
28. distance formulatemplatetouchpad
 
Incremental and parallel computation of structural graph summaries for evolvi...
Incremental and parallel computation of structural graph summaries for evolvi...Incremental and parallel computation of structural graph summaries for evolvi...
Incremental and parallel computation of structural graph summaries for evolvi...
 
From FVS to F-Deletion
From FVS to F-DeletionFrom FVS to F-Deletion
From FVS to F-Deletion
 
On recent improvements in the conic optimizer in MOSEK
On recent improvements in the conic optimizer in MOSEKOn recent improvements in the conic optimizer in MOSEK
On recent improvements in the conic optimizer in MOSEK
 
Lecture6
Lecture6Lecture6
Lecture6
 
IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...
 
R02410651069
R02410651069R02410651069
R02410651069
 
On the Scalability of Graph Kernels Applied to Collaborative Recommenders
On the Scalability of Graph Kernels Applied to Collaborative RecommendersOn the Scalability of Graph Kernels Applied to Collaborative Recommenders
On the Scalability of Graph Kernels Applied to Collaborative Recommenders
 
GRUPO 5 : novel fuzzy logic based edge detection technique
GRUPO 5 :  novel fuzzy logic based edge detection techniqueGRUPO 5 :  novel fuzzy logic based edge detection technique
GRUPO 5 : novel fuzzy logic based edge detection technique
 
study Domain Transform for Edge-Aware Image and Video Processing
study Domain Transform for Edge-Aware Image and Video Processingstudy Domain Transform for Edge-Aware Image and Video Processing
study Domain Transform for Edge-Aware Image and Video Processing
 
Attention is All You Need (Transformer)
Attention is All You Need (Transformer)Attention is All You Need (Transformer)
Attention is All You Need (Transformer)
 
Applied Deep Learning 11/03 Convolutional Neural Networks
Applied Deep Learning 11/03 Convolutional Neural NetworksApplied Deep Learning 11/03 Convolutional Neural Networks
Applied Deep Learning 11/03 Convolutional Neural Networks
 

Kürzlich hochgeladen

Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 

Kürzlich hochgeladen (20)

Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 

Simulated Binary Crossover

  • 1. A Combined Genetic Adaptive Search (GeneAS) for Engineering Design Kalyanmoy Deb and Mayank Goyal (India) Journal of Computer Science and Informatics, 1996 volume 26, page 30-45 Reviewed by Paskorn Champrasert paskorn@cs.umb.edu http://dssg.cs.umb.edu
  • 2. Outline • Introduction • Genetic Operations – Crossover (Binary Crossover, SBX Crossover) – Mutation • GeneAS Algorithms • Experiment Results • Conclusion October 24, 08 DSSG Group Meeting 2/31
  • 3. Introduction • The aim in an engineering design problem is to minimize or maximize a design objective and satisfy constraints. • The optimization problem can be expressed in the following form: • The variable vector X represents a set of variables. xi , i = 1, 2, , N October 24, 08 DSSG Group Meeting 3/31
  • 4. A Simple Cantilever beam design problem: • A cantilever beam is a beam that is rigidly supported at one end and carries a certain load on the other end. Design possibilities: - Shape (circular or square) binary design variable (0/1) - Size Diameter of circular shape Side of square shape discrete variable because size are not available in any sizes - Length real variable because we can cut beams at any length - Material discrete variable (cast iron, aluminum, steel, brass) October 24, 08 DSSG Group Meeting 4/31
  • 5. Research Issues • The optimization problem is involving with different types of variables. E.g., - For the material variable if the steel is represented as 1 and cast iron is represented as 2, no intermediate value (e.g., 1.4 ) is allowed. binary-coded variable should be used. - For the beam length variable (0-100) if the length is represented by using 4 bit binary-coded variable (0000-1111). The precision of the variable is only 100/16 = 6.25 no more precise value (e.g., 2.5) is allowed real-coded variable should be used. • Designers must rely on an optimization algorithms which is flexible enough to handle a mixed type of variables October 24, 08 DSSG Group Meeting 5/31
  • 6. GeneAS • The algorithm restricts its search only to the permissible values of the design variables. • GeneAS uses a combination of binary-coded and real- coded GA, depending on the nature of the design variables. – Variables are coded differently – Genetic Operations (crossover and mutation) are performed differently for each variable. E.g., - Beam length is real-coded variable real value crossover and real value mutation are used. - Beam diameter is binary-coded variable binary value crossover and real value mutation are used. October 24, 08 DSSG Group Meeting 6/31
  • 7. Binary-Coded GA • In a binary-coded GA, the variables are represented in binary strings formed with 1 and 0. • Variables can be expressed as : ( b1b2b3…bn ) , bi is ether 1 or 0 • E.g., 7-bit string representing the diameter in the range of (3,130) mm, the precision in the solution is 1 mm (130-3)/(1111111B-0000000B) = 127/127 = 1mm October 24, 08 DSSG Group Meeting 7/31
  • 8. Binary Genetic Operations One-point Crossover 1 0 0 1 1) A single crossover point on both parents 1 1 1 0 string is selected. 2) All data beyond that crossover point in Crossover point either parent is swapped between the two 1 0 1 0 parent organisms. 1 1 0 1 The resulting organisms are the offspring: Binary Mutation 1 1 1 0 Each bit of offspring has a probability 1 1 0 0 (mutation rate) to flip (0 1 or 1 0) October 24, 08 DSSG Group Meeting 8/31
  • 9. Important Property of One-Point Crossover 1) The average of the decoded parameter values is the same before and after the crossover operation. 1 0 0 1 9 Average = 11.5 1 1 1 0 14 1 0 1 0 10 Average = 11.5 1 1 0 1 13 October 24, 08 DSSG Group Meeting 9/31
  • 10. October 24, 08 DSSG Group Meeting 10/31
  • 11. Important Property of One-Point Crossover 2) Spread factor: Spread factor β is defined as the ratio of the spread of offspring points to that of the parent points: c1 −c2 β= | p1 −p2 | c1 c2 - Contracting Crossover β<1 p1 p2 The offspring points are enclosed by the parent points. - Expanding Crossover β>1 c1 c2 The offspring points enclose the parent points. p1 p2 - Stationary Crossover β=1 c1 c2 The offspring points are the same as parent points p1 p2 October 24, 08 DSSG Group Meeting 11/31
  • 12. Spread Factor Property • Assume parents strings are two strings: p1= (a1a2a3…a15) p2 = (b1b2b3…b15). • The crossover point is varied from (0,15) The probability distribution: -- The probability of occurrence of β ≈ 1 is more likely than any other β value. If the parents are closer, the spread of the two likely offspring is also smaller. If the spread of parents is more, the spread of likely offspring is also large. October 24, 08 DSSG Group Meeting 12/31
  • 13. Real-Coded GA • In a real-coded GA, the variables are represented in continuous variables. • Variables can be expressed as : X , X is any number in [XL,XU] XL is lower bound ,XU is upper bound • The binary-coded genetic operations cannot be used for real-coded variables. • The genetic operations have to be modified in order to handle real- coded variables However, the proposed real-coded genetic operations should reserve the binary-coded genetic operation properties. October 24, 08 DSSG Group Meeting 13/31
  • 14. SBX Simulated Binary Crossover • Simulated Binary Crossover (SBX) was proposed in 1995 by Deb and Agrawal. • SBX was designed with respect to the one-point crossover properties in binary-coded GA. – Average Property: The average of the decoded parameter values is the same before and after the crossover operation. – Spread Factor Property: The probability of occurrence of spread factor β ≈ 1 is more likely than any other β value. October 24, 08 DSSG Group Meeting 14/31
  • 15. SBX – Offspring Value To reserve the average property, the offspring values are calculated as: Offspring: c1 c2 c1 = x − 1 β(p2 − p1 ) ¯ 2 β<1 p1 p2 c2 = x + 1 β(p2 − p1 ) ¯ 2 c1 c2 By, β>1 1 x= ¯ 2 (p1 + p2 ) p1 p2 p2 > p1 c1 c2 So, β=1 p1 p2 c=x ¯ ¯ October 24, 08 DSSG Group Meeting 15/31
  • 16. Spread Factor (β) in SBX • The probability distribution of β in SBX should be similar (e.g. same shape) to the probability distribution of β in Binary-coded crossover. • This paper proposed probability c(β) = 0.5(n + 1)β n , β ≤ 1 distribution function as: 1 c(β) = 0.5(n + 1) β n+2 , β > 1 1.6 1.4 Probability Distribution 1.2 1.0 n=2 0.8 0.6 0.4 0.2 0.0 0 1 2 3 4 5 6 7 β October 24, 08 DSSG Group Meeting 16/31
  • 17. A large value of n gives a higher probability for creating ‘near-parent’ contracting solutions. c(β) = 0.5(n + 1)β n , β ≤ 1 expanding 1 c(β) = 0.5(n + 1) β n+2 , β > 1 Mostly, n=2 to 5 October 24, 08 DSSG Group Meeting 17/31
  • 18. Spread Factor (β) as a random number • β is a random number that follows the proposed probability distribution function: 1.6 1.4 To get a β value, Probability Distribution 1.2 1) A unified random number u n=2 is generated [0,1] 1.0 0.8 0.6 2) Get β value that makes the 0.4 0.2 area under the curve = u 0.0 u 0 1 2 3 4 5 6 7 β Offspring: β c1 = x − 1 β(p2 − p1 ) ¯ 2 c2 = x + 1 β(p2 − p1 ) ¯ 2 October 24, 08 DSSG Group Meeting 18/31
  • 19. Real Mutation • Mutation probability (pm) in (0,1) is applied to each variable. • For each variable If a unified random number um in (0,1) < pm mutation operator is performed for the variable. p: parent c: offspring It represent the maximum permissible change in the parent ¯ δ is a random number. Its probability distribution function is: October 24, 08 DSSG Group Meeting 19/31
  • 20. ¯ ± is generated the same process as the β October 24, 08 DSSG Group Meeting 20/31
  • 21. Combined GA (GeneAS) • GeneAS – Each variable is coded depending on its nature. – The crossover operator and mutation operator have to be applied variable by variable. • If it is a binary-coded variable, the binary-genetic operations are performed • If it is a real-coded variable, the real-genetic operations are performed. – The fitness function and constraint function are calculated as normal. October 24, 08 DSSG Group Meeting 21/31
  • 22. *reproduction = selection mechanism October 24, 08 DSSG Group Meeting 22/31
  • 23. Experiments • Two different problems are solved using GeneAS. • Two different problems were solved using different traditional optimization algorithms. - Lagrange multiplier method by Kannan and Kramer 1993 - Branch and Bound method by Sandgren 1988 • GeneAS Crossover Probability =0.9 Mutation Probability =0 Selection mechanism = ? Population size =50 Max generation =? October 24, 08 DSSG Group Meeting 23/31
  • 24. Gear Train Design October 24, 08 DSSG Group Meeting 24/31
  • 25. • Since, all the four variables are discrete, each variable is coded in six-bit binary string (64 values), so that variables take values between 12 and 75. • Four constraints are added to the objective function. October 24, 08 DSSG Group Meeting 25/31
  • 26. Result GeneAS have found much better solutions than the previously known optimal solutions. October 24, 08 DSSG Group Meeting 26/31
  • 27. Welded Beam Design • A rectangular beam needs to be welded as a cantilever beam to carry a certain load. • The objective of the design of the welded beam is to minimize the overall cost of the fabrication which involves the cost of beam material and the cost of weld deposit. • Two different welding configurations can be applied. (1 is used for four-sided welding and 0 is used for two-sided welding) : X1 October 24, 08 DSSG Group Meeting 27/31
  • 28. • One of the four materials can be used – (00-steel, 01-cast iron, 10-aluminum, 11-brass): X2 • h : X3 • t : X4 • b : X5 • l : X6 October 24, 08 DSSG Group Meeting 28/31
  • 29. October 24, 08 DSSG Group Meeting 29/31
  • 30. Results X1 = Four-sided X2 =Steel X3 =0.1875 X4 =8.2500 X5 =0.2500 X6 =1.6849 g1(x) =380.1660 g2(x) =402.0473 g3(x) = 0.2346 g4(x) = 0.1621 F(x) =1.9622 October 24, 08 DSSG Group Meeting 30/31
  • 31. Conclusions • This paper presents a proposed genetic algorithms for engineering optimization problems. • The type variable can be different. • SBX and real-mutation is proposed. • The results show that GeneAS can find very good optimal solutions. October 24, 08 DSSG Group Meeting 31/31
  • 32. Discrete Variables October 24, 08 DSSG Group Meeting 32/31
  • 33. SBX October 24, 08 DSSG Group Meeting 33/31
  • 34. BLX-α • Blend Crossover (BLX-α) was proposed by Eshelman and Schaffer (1993) • BLX-α operator is used for real-parameter GAs. • α represents a constant. (0,1) • For two parents x1 and x2 (assume x1 < x2) • BLX-α randomly picks a solution in the range [x1- α(x2-x1) , x2+ α(x2-x1) ] Possible offspring x1 x2 α(x2-x1) α(x2-x1) • The investigators have reported that BLX-0.5 (α=0.5) performs better than BLX operators with other α value. October 24, 08 DSSG Group Meeting 34/31