SlideShare une entreprise Scribd logo
1  sur  39
Télécharger pour lire hors ligne
Generative Design
Week 6 – Designing with parameters,
objectives, and constraints
Danil Nagy
September 22, 2019
Generative Design
September 22, 2019
Optimization
Parameters
Constraints
Objectives
Generative Design
September 22, 2019
Elements of optimization
1. Parameters – a set of variables that can be adjusted
• Continuous – a value within a certain range, represented by a floating point or decimal number
• Categorical – a selection from a limited set of options, represented by an integer or whole number
• Sequence – an ordering of a set of items, represented by a shuffled sequence of whole numbers
2. Objectives - functions representing the goals of the problem
• Minimize value
• Maximize value
3. Constraints - functions representing conditions that make a valid solution
• Must be equal to a certain value
• Must be smaller than a certain value
• Must be greater than a certain value
Generative Design
September 22, 2019
Design space model
Generative Design
September 22, 2019
1. Generation 2. Selection 3. Crossover 4. Mutation
Genetic Algorithm
Generative Design
September 22, 2019
Genetic Algorithm
1. Generation – the model’s parameters are randomly varied to create a set of initial design options
2. Selection – based on their objective and constraint values, two ‘parent’ designs are chosen from the population
and subjected to crossover
3. Crossover – the parameters of the two ‘parent’ designs are recombined to create a new ‘child’ design in the next
generation
4. Mutation – the parameters of some ‘child’ designs are randomly changed to introduce new variation into the
optimization process
Steps 2-4 are repeated to create a specified set of generations or until some termination criteria is met.
Generative Design
September 22, 2019
Generation
1. Continuous
• Must specify minimum and maximum value the parameter can take, as well as the number of parameters to
generate
• Depending on how parameter is used in the model, can create an infinite number of design variations
2. Categorical
• Must specify number of options to choose from and the number of parameters to generate
• Creates a limited number of design options which can be computed as where o is the number of options
and n is the number of parameters
3. Sequence
• Must specify the number of items to order
• Creates a limited number of design options which can be computed as where n is the number of items.
Generative Design
September 22, 2019
Generation
o = number of options
n = number of parameters
number of solutions = o^n
4^5 = 1,024
4^20 = 1,099,511,627,776
Generative Design
September 22, 2019
Generation
n = number of cities
number of solutions = n!
10! = 10 * 9 * 8 * 7 * 6 * 5 * 4 * 3 * 2 * 1 = 3,628,800
20! = 2.432902 * 10^18
30! = 2.652529 * 10^32
Generative Design
September 22, 2019
Generation
/src/objects.py
Generative Design
September 22, 2019
Selection
• Typically done in a tournament where two designs are picked randomly from the population and the ‘best’ is
selected to be a parent.
• To create a single child, a total of four random candidate designs must be chosen.
• Picking the ‘best’ design during tournament selection is simple with a single objective, but becomes more
complicated with two or more objectives since one candidate may be better at the first objectives while the other is
better at the second.
Generative Design
September 22, 2019
Selection
Selection Crossover New child
Tournament with single objective
Generative Design
September 22, 2019
Dominance principle
To pick the ‘best’ design with two or more objectives, we first rank the designs according to the dominance principle.
A. Konak, D. W. Coit, A. E. Smith - Multi-Objective Optimization Using Genetic Algorithms: A Tutorial (2006)
Generative Design
September 22, 2019
Dominance principle
A solution A dominates another solution B if A performs at least as well as B in every objective, and better than B in at
least one objective.
A. Konak, D. W. Coit, A. E. Smith - Multi-Objective Optimization Using Genetic Algorithms: A Tutorial (2006)
Generative Design
September 22, 2019
Assigning rank
The Pareto optimal set is the collection of solutions which are not dominated by any other solution in the set.
Solutions in this set are assigned a rank of 1.
A. Konak, D. W. Coit, A. E. Smith - Multi-Objective Optimization Using Genetic Algorithms: A Tutorial (2006)
Generative Design
September 22, 2019
Assigning rank
By temporarily ignoring the first optimal set, a second optimal set can be formed. Solutions in this set are assigned a
rank of 2.
A. Konak, D. W. Coit, A. E. Smith - Multi-Objective Optimization Using Genetic Algorithms: A Tutorial (2006)
Generative Design
September 22, 2019
Assigning rank
This process can be repeated to generate the ranking of all solutions. In a tournament, a design in a higher rank is
considered better than a design in a lower rank and is chosen to be a parent.
A. Konak, D. W. Coit, A. E. Smith - Multi-Objective Optimization Using Genetic Algorithms: A Tutorial (2006)
Generative Design
September 22, 2019
Crowding distance
If both designs are in the same rank, we must pick the ‘best’ design based on other criteria. One option is the crowding
distance, which is measured as the distance between the two adjacent solutions in the same rank across all objectives.
Kalyanmoy Deb, et al. - A Fast and Elitist Multiobjective Genetic Algorithm: NSGA-II (2002)
Generative Design
September 22, 2019
Crowding distance
Designs with a larger crowding distance are considered better because they represent less explored areas of the
designs space.
Kalyanmoy Deb, et al. - A Fast and Elitist Multiobjective Genetic Algorithm: NSGA-II (2002)
Generative Design
September 22, 2019
Feasibility
If constraints are used, the design’s feasibility can be added as another criteria for picking the ‘best’ design option.
Solutions are considered not feasible if they break the conditions of one or more constraints.
Kalyanmoy Deb, et al. - A Fast and Elitist Multiobjective Genetic Algorithm: NSGA-II (2002)
Generative Design
September 22, 2019
Selection
Using the three criteria of feasibility, rank, and crowding distance, we can create a multi-stage decision tree for
selecting the ‘best’ design.
Kalyanmoy Deb, et al. - A Fast and Elitist Multiobjective Genetic Algorithm: NSGA-II (2002)
Generative Design
September 22, 2019
Selection
Between b and i, which would be chosen?
Generative Design
September 22, 2019
Selection
b is chosen because it has the higher rank.
Generative Design
September 22, 2019
Selection
Between c and h, which would be chosen?
Generative Design
September 22, 2019
Selection
h is chosen because it is feasible.
Generative Design
September 22, 2019
Selection
Between b and d, which would be chosen?
Generative Design
September 22, 2019
Selection
b is chosen because it has a bigger crowding distance.
Generative Design
September 22, 2019
Crossover
During crossover, the parameters of the two ‘parent’ designs are recombined to create a single new ‘child’ design. How
this is done depends on the type of parameter used:
• With Continuous parameters, a new value is chosen randomly within a ‘window’ formed by the values from the two
parents.
• With Categorical parameters, the child inherits the value from one of the parents randomly.
• With Sequence parameters, we can use the inversion concept to randomly recombine the sequences of both
parents while ensuring that the resulting sequence will be valid1.
1. Göktürk Üçoluk - Genetic Algorithm Solution of the TSP Avoiding Special Crossover and Mutation (2002)
Generative Design
September 22, 2019
Crossover
/src/design.py
Generative Design
September 22, 2019
Crossover
/src/design.py
Generative Design
September 22, 2019
Mutation
During mutation, the parameters of the new ‘child’ design are randomly varied based on some specified probability.
How this is done depends on the type of parameter used:
• With Continuous parameters, the value can be randomly jittered based on a normal distribution.
• With Categorical parameters, a new option can be randomly chosen.
• With Sequence parameters, we can randomly swap two values in the ordered list a certain number of times.
Generative Design
September 22, 2019/src/design.py
Mutation
Generative Design
September 22, 2019/src/design.py
Mutation
Generative Design
September 22, 2019/src/design.py
Mutation
Generative Design
September 22, 2019
Evaluating generative models
1. Bias vs. Variance – describes the total variation produced by the model.
• Models that are so constrained that they do not produce an adequate amount of variation are considered
too biased.
• Models that create so much variation that they can’t be efficiently searched by an optimization algorithm are
considered too variant.
• We can think of this as describing the limits or extents of the design space generated by the model.
2. Complexity vs. Continuity – describes how the model reacts to small changes in its parameters
• The more smoothly the model changes with its parameters the more continuous it is.
• Complex logics in the model can create a more complex relationship between the parameters and the model.
• The more continuous a model, the easier it is to optimize but the less likely you are to get unexpected results.
• We can think of this as describing the internal structure of the design space generated by the model.
Generative Design
September 22, 2019
Troubleshooting
Issue Possible cause Possible solution
The optimization process converges too
quickly on a design which may not be
optimal.
The model may be too biased, so it is not able to create the
necessary variation to find the best design options.
Modify the model to create more variation based on the existing
parameters, add more parameters, or try parameters of different
types.
There may not be enough designs in each generation to
produce enough variation among the designs.
Rerun the optimization with a larger number of designs for each
generation.
The mutation rate may too low to introduce enough variation
during the optimization process.
Rerun the optimization with a higher mutation rate.
The optimization process converges too
quickly on a solution which is obvious.
The model may be too continuous with a very direct
relationship between its input parameters and the output goals
and constraints.
The problem the model represents may be too simple and obvious to
make optimization worthwhile. In this case a heuristic solution may be
best.
The optimization process is very slow
and seems to have trouble converging
on the best designs.
The model may be too variant which makes it difficult for the
optimization algorithm to find trends in the design space and
narrow in on the best design strategies.
Constrain the model or limit the number of parameters so it can more
easily be searched by the optimization algorithm.
There is no discernable trend in the
optimization process towards better
designs.
The model may be too complex and discontinuous, which
makes it difficult for the algorithm to find trends and create
better designs.
Reduce or simplify the model’s parameters and make the relationship
between the parameters and the model as direct as possible.
The mutation rate may be so high that it is disrupting the
algorithm’s ability to evolve better designs.
Rerun the optimization with a lower mutation rate.
Generative Design
September 22, 2019
5 guidelines for designing better generative models
1. Minimize the number of parameters as much as possible (Occam’s razor)
2. Make the parameters as continuous as possible
3. Limit the design space to only feasible designs as much as possible
4. Make the model computation as fast as possible
5. Minimize randomness in the model as much as possible
Generative Design
September 22, 2019
Demo
Generative Design - Week 6 - Designing with inputs, objectives, and constraints

Contenu connexe

Tendances

Introduction to Visual transformers
Introduction to Visual transformers Introduction to Visual transformers
Introduction to Visual transformers leopauly
 
Neural Architecture Search: Learning How to Learn
Neural Architecture Search: Learning How to LearnNeural Architecture Search: Learning How to Learn
Neural Architecture Search: Learning How to LearnKwanghee Choi
 
Using Generative AI in the Classroom .pptx
Using Generative AI in the Classroom .pptxUsing Generative AI in the Classroom .pptx
Using Generative AI in the Classroom .pptxJonathanDietz3
 
Hierarchical clustering in Python and beyond
Hierarchical clustering in Python and beyondHierarchical clustering in Python and beyond
Hierarchical clustering in Python and beyondFrank Kelly
 
Generative Adversarial Networks (GANs) - Ian Goodfellow, OpenAI
Generative Adversarial Networks (GANs) - Ian Goodfellow, OpenAIGenerative Adversarial Networks (GANs) - Ian Goodfellow, OpenAI
Generative Adversarial Networks (GANs) - Ian Goodfellow, OpenAIWithTheBest
 
Autoencoder Forest for Anomaly Detection from IoT Time Series
Autoencoder Forest for Anomaly Detection from IoT Time SeriesAutoencoder Forest for Anomaly Detection from IoT Time Series
Autoencoder Forest for Anomaly Detection from IoT Time SeriesYiqun Hu
 
PR-270: PP-YOLO: An Effective and Efficient Implementation of Object Detector
PR-270: PP-YOLO: An Effective and Efficient Implementation of Object DetectorPR-270: PP-YOLO: An Effective and Efficient Implementation of Object Detector
PR-270: PP-YOLO: An Effective and Efficient Implementation of Object DetectorJinwon Lee
 
Boosting Approach to Solving Machine Learning Problems
Boosting Approach to Solving Machine Learning ProblemsBoosting Approach to Solving Machine Learning Problems
Boosting Approach to Solving Machine Learning ProblemsDr Sulaimon Afolabi
 
Machine Learning an Research Overview
Machine Learning an Research OverviewMachine Learning an Research Overview
Machine Learning an Research OverviewKathirvel Ayyaswamy
 
Introduction to Random Forest
Introduction to Random Forest Introduction to Random Forest
Introduction to Random Forest Rupak Roy
 
Simple overview of machine learning
Simple overview of machine learningSimple overview of machine learning
Simple overview of machine learningpriyadharshini R
 
The 7 steps of Machine Learning
The 7 steps of Machine LearningThe 7 steps of Machine Learning
The 7 steps of Machine LearningWaziri Shebogholo
 
Stacking ensemble
Stacking ensembleStacking ensemble
Stacking ensemblekalung0313
 
GraphSage vs Pinsage #InsideArangoDB
GraphSage vs Pinsage #InsideArangoDBGraphSage vs Pinsage #InsideArangoDB
GraphSage vs Pinsage #InsideArangoDBArangoDB Database
 

Tendances (20)

Ensemble methods
Ensemble methodsEnsemble methods
Ensemble methods
 
Introduction to Visual transformers
Introduction to Visual transformers Introduction to Visual transformers
Introduction to Visual transformers
 
Neural Architecture Search: Learning How to Learn
Neural Architecture Search: Learning How to LearnNeural Architecture Search: Learning How to Learn
Neural Architecture Search: Learning How to Learn
 
Using Generative AI in the Classroom .pptx
Using Generative AI in the Classroom .pptxUsing Generative AI in the Classroom .pptx
Using Generative AI in the Classroom .pptx
 
XGBoost & LightGBM
XGBoost & LightGBMXGBoost & LightGBM
XGBoost & LightGBM
 
Hierarchical clustering in Python and beyond
Hierarchical clustering in Python and beyondHierarchical clustering in Python and beyond
Hierarchical clustering in Python and beyond
 
Generative Adversarial Networks (GANs) - Ian Goodfellow, OpenAI
Generative Adversarial Networks (GANs) - Ian Goodfellow, OpenAIGenerative Adversarial Networks (GANs) - Ian Goodfellow, OpenAI
Generative Adversarial Networks (GANs) - Ian Goodfellow, OpenAI
 
K-Nearest Neighbor(KNN)
K-Nearest Neighbor(KNN)K-Nearest Neighbor(KNN)
K-Nearest Neighbor(KNN)
 
Autoencoder Forest for Anomaly Detection from IoT Time Series
Autoencoder Forest for Anomaly Detection from IoT Time SeriesAutoencoder Forest for Anomaly Detection from IoT Time Series
Autoencoder Forest for Anomaly Detection from IoT Time Series
 
PR-270: PP-YOLO: An Effective and Efficient Implementation of Object Detector
PR-270: PP-YOLO: An Effective and Efficient Implementation of Object DetectorPR-270: PP-YOLO: An Effective and Efficient Implementation of Object Detector
PR-270: PP-YOLO: An Effective and Efficient Implementation of Object Detector
 
Boosting Approach to Solving Machine Learning Problems
Boosting Approach to Solving Machine Learning ProblemsBoosting Approach to Solving Machine Learning Problems
Boosting Approach to Solving Machine Learning Problems
 
Ensemble methods
Ensemble methods Ensemble methods
Ensemble methods
 
Machine Learning an Research Overview
Machine Learning an Research OverviewMachine Learning an Research Overview
Machine Learning an Research Overview
 
Introduction to Random Forest
Introduction to Random Forest Introduction to Random Forest
Introduction to Random Forest
 
Random forest
Random forestRandom forest
Random forest
 
Soft computing06
Soft computing06Soft computing06
Soft computing06
 
Simple overview of machine learning
Simple overview of machine learningSimple overview of machine learning
Simple overview of machine learning
 
The 7 steps of Machine Learning
The 7 steps of Machine LearningThe 7 steps of Machine Learning
The 7 steps of Machine Learning
 
Stacking ensemble
Stacking ensembleStacking ensemble
Stacking ensemble
 
GraphSage vs Pinsage #InsideArangoDB
GraphSage vs Pinsage #InsideArangoDBGraphSage vs Pinsage #InsideArangoDB
GraphSage vs Pinsage #InsideArangoDB
 

Similaire à Generative Design - Week 6 - Designing with inputs, objectives, and constraints

Interactive Tradeoffs Between Competing Offline Metrics with Bayesian Optimiz...
Interactive Tradeoffs Between Competing Offline Metrics with Bayesian Optimiz...Interactive Tradeoffs Between Competing Offline Metrics with Bayesian Optimiz...
Interactive Tradeoffs Between Competing Offline Metrics with Bayesian Optimiz...SigOpt
 
CEE526 Paper for Group 33 (Bowen, Bhanu)
CEE526 Paper for Group 33 (Bowen, Bhanu)CEE526 Paper for Group 33 (Bowen, Bhanu)
CEE526 Paper for Group 33 (Bowen, Bhanu)Bowen Deng
 
churn_detection.pptx
churn_detection.pptxchurn_detection.pptx
churn_detection.pptxDhanuDhanu49
 
Model-Based Optimization for Effective and Reliable Decision-Making
Model-Based Optimization for Effective and Reliable Decision-MakingModel-Based Optimization for Effective and Reliable Decision-Making
Model-Based Optimization for Effective and Reliable Decision-MakingBob Fourer
 
Pm0015 summer-2016
Pm0015 summer-2016Pm0015 summer-2016
Pm0015 summer-2016smumbahelp
 
Application and evaluation of a K-Medoidsbased shape clustering method for an...
Application and evaluation of a K-Medoidsbased shape clustering method for an...Application and evaluation of a K-Medoidsbased shape clustering method for an...
Application and evaluation of a K-Medoidsbased shape clustering method for an...Venkat Projects
 
Pragmatic Approaches to Project Costs Estimation
Pragmatic Approaches to Project Costs EstimationPragmatic Approaches to Project Costs Estimation
Pragmatic Approaches to Project Costs EstimationChristopher Akinlade
 
Advanced Optimization for the Enterprise Webinar
Advanced Optimization for the Enterprise WebinarAdvanced Optimization for the Enterprise Webinar
Advanced Optimization for the Enterprise WebinarSigOpt
 
Leed green associate vi. stakeholder involvement in innovation answer
Leed green associate vi. stakeholder involvement in innovation   answer Leed green associate vi. stakeholder involvement in innovation   answer
Leed green associate vi. stakeholder involvement in innovation answer Bilal Mohamed
 
Optimizing Building Plan for a (9m X 12m) House Using Learning Systems
Optimizing Building Plan for a (9m X 12m) House Using Learning SystemsOptimizing Building Plan for a (9m X 12m) House Using Learning Systems
Optimizing Building Plan for a (9m X 12m) House Using Learning SystemsIJCSIS Research Publications
 
Chapter one introduction optimization
Chapter one  introduction optimizationChapter one  introduction optimization
Chapter one introduction optimizationseyfen
 
Spreadsheet Modeling and Decision Analysis A Practical Introduction to Busine...
Spreadsheet Modeling and Decision Analysis A Practical Introduction to Busine...Spreadsheet Modeling and Decision Analysis A Practical Introduction to Busine...
Spreadsheet Modeling and Decision Analysis A Practical Introduction to Busine...rikujoxizi
 
Interview preparation net_asp_csharp
Interview preparation net_asp_csharpInterview preparation net_asp_csharp
Interview preparation net_asp_csharpMallikarjuna G D
 
Do UX designers have a role in reducing digital waste?
Do UX designers have a role in reducing digital waste?Do UX designers have a role in reducing digital waste?
Do UX designers have a role in reducing digital waste?User Vision
 
MG2_BIM-TheArchitectsPerspective
MG2_BIM-TheArchitectsPerspectiveMG2_BIM-TheArchitectsPerspective
MG2_BIM-TheArchitectsPerspectiveScott Myatich
 
Learning to Diversify for E-commerce Search with Multi-Armed Bandit}
Learning to Diversify for E-commerce Search with Multi-Armed Bandit}Learning to Diversify for E-commerce Search with Multi-Armed Bandit}
Learning to Diversify for E-commerce Search with Multi-Armed Bandit}Anjan Goswami
 
1440 pmp exam question bank
1440 pmp exam question bank1440 pmp exam question bank
1440 pmp exam question bankBaskar El
 

Similaire à Generative Design - Week 6 - Designing with inputs, objectives, and constraints (20)

Interactive Tradeoffs Between Competing Offline Metrics with Bayesian Optimiz...
Interactive Tradeoffs Between Competing Offline Metrics with Bayesian Optimiz...Interactive Tradeoffs Between Competing Offline Metrics with Bayesian Optimiz...
Interactive Tradeoffs Between Competing Offline Metrics with Bayesian Optimiz...
 
CEE526 Paper for Group 33 (Bowen, Bhanu)
CEE526 Paper for Group 33 (Bowen, Bhanu)CEE526 Paper for Group 33 (Bowen, Bhanu)
CEE526 Paper for Group 33 (Bowen, Bhanu)
 
churn_detection.pptx
churn_detection.pptxchurn_detection.pptx
churn_detection.pptx
 
IM426 3A G5.ppt
IM426 3A G5.pptIM426 3A G5.ppt
IM426 3A G5.ppt
 
Model-Based Optimization for Effective and Reliable Decision-Making
Model-Based Optimization for Effective and Reliable Decision-MakingModel-Based Optimization for Effective and Reliable Decision-Making
Model-Based Optimization for Effective and Reliable Decision-Making
 
Pm0015 summer-2016
Pm0015 summer-2016Pm0015 summer-2016
Pm0015 summer-2016
 
Application and evaluation of a K-Medoidsbased shape clustering method for an...
Application and evaluation of a K-Medoidsbased shape clustering method for an...Application and evaluation of a K-Medoidsbased shape clustering method for an...
Application and evaluation of a K-Medoidsbased shape clustering method for an...
 
Pragmatic Approaches to Project Costs Estimation
Pragmatic Approaches to Project Costs EstimationPragmatic Approaches to Project Costs Estimation
Pragmatic Approaches to Project Costs Estimation
 
Advanced Optimization for the Enterprise Webinar
Advanced Optimization for the Enterprise WebinarAdvanced Optimization for the Enterprise Webinar
Advanced Optimization for the Enterprise Webinar
 
Leed green associate vi. stakeholder involvement in innovation answer
Leed green associate vi. stakeholder involvement in innovation   answer Leed green associate vi. stakeholder involvement in innovation   answer
Leed green associate vi. stakeholder involvement in innovation answer
 
Designing Data Products
Designing Data ProductsDesigning Data Products
Designing Data Products
 
Optimizing Building Plan for a (9m X 12m) House Using Learning Systems
Optimizing Building Plan for a (9m X 12m) House Using Learning SystemsOptimizing Building Plan for a (9m X 12m) House Using Learning Systems
Optimizing Building Plan for a (9m X 12m) House Using Learning Systems
 
Chapter one introduction optimization
Chapter one  introduction optimizationChapter one  introduction optimization
Chapter one introduction optimization
 
Spreadsheet Modeling and Decision Analysis A Practical Introduction to Busine...
Spreadsheet Modeling and Decision Analysis A Practical Introduction to Busine...Spreadsheet Modeling and Decision Analysis A Practical Introduction to Busine...
Spreadsheet Modeling and Decision Analysis A Practical Introduction to Busine...
 
Interview preparation net_asp_csharp
Interview preparation net_asp_csharpInterview preparation net_asp_csharp
Interview preparation net_asp_csharp
 
Do UX designers have a role in reducing digital waste?
Do UX designers have a role in reducing digital waste?Do UX designers have a role in reducing digital waste?
Do UX designers have a role in reducing digital waste?
 
Ch09
Ch09Ch09
Ch09
 
MG2_BIM-TheArchitectsPerspective
MG2_BIM-TheArchitectsPerspectiveMG2_BIM-TheArchitectsPerspective
MG2_BIM-TheArchitectsPerspective
 
Learning to Diversify for E-commerce Search with Multi-Armed Bandit}
Learning to Diversify for E-commerce Search with Multi-Armed Bandit}Learning to Diversify for E-commerce Search with Multi-Armed Bandit}
Learning to Diversify for E-commerce Search with Multi-Armed Bandit}
 
1440 pmp exam question bank
1440 pmp exam question bank1440 pmp exam question bank
1440 pmp exam question bank
 

Plus de Danil Nagy

Generative Design - Week 4 - Scripting in Python
Generative Design - Week 4 - Scripting in PythonGenerative Design - Week 4 - Scripting in Python
Generative Design - Week 4 - Scripting in PythonDanil Nagy
 
Generative Design - Week 3 - Working with data in Grasshopper
Generative Design - Week 3 - Working with data in GrasshopperGenerative Design - Week 3 - Working with data in Grasshopper
Generative Design - Week 3 - Working with data in GrasshopperDanil Nagy
 
Generative Design - Week 1 - Introduction to Generative Design
Generative Design - Week 1 - Introduction to Generative DesignGenerative Design - Week 1 - Introduction to Generative Design
Generative Design - Week 1 - Introduction to Generative DesignDanil Nagy
 
Generative Design - Week 2 - Parametric modeling in rhino and grasshopper
Generative Design - Week 2 - Parametric modeling in rhino and grasshopperGenerative Design - Week 2 - Parametric modeling in rhino and grasshopper
Generative Design - Week 2 - Parametric modeling in rhino and grasshopperDanil Nagy
 
SP18 Generative Design - Week 8 - Optimization
SP18 Generative Design - Week 8 - OptimizationSP18 Generative Design - Week 8 - Optimization
SP18 Generative Design - Week 8 - OptimizationDanil Nagy
 
SP18 Generative Design - Week 7 - GD case studies
SP18 Generative Design - Week 7 - GD case studiesSP18 Generative Design - Week 7 - GD case studies
SP18 Generative Design - Week 7 - GD case studiesDanil Nagy
 
SP18 Generative Design - Week 6 - Design space design
SP18 Generative Design - Week 6 - Design space designSP18 Generative Design - Week 6 - Design space design
SP18 Generative Design - Week 6 - Design space designDanil Nagy
 
SP18 Generative Design - Week 5 - Introduction to simulation
SP18 Generative Design - Week 5 - Introduction to simulationSP18 Generative Design - Week 5 - Introduction to simulation
SP18 Generative Design - Week 5 - Introduction to simulationDanil Nagy
 
SP18 Generative Design - Week 4 - Computational control strategies
SP18 Generative Design - Week 4 - Computational control strategiesSP18 Generative Design - Week 4 - Computational control strategies
SP18 Generative Design - Week 4 - Computational control strategiesDanil Nagy
 
SP18 Generative Design - Week 2 - Introduction to computational design
SP18 Generative Design - Week 2 - Introduction to computational designSP18 Generative Design - Week 2 - Introduction to computational design
SP18 Generative Design - Week 2 - Introduction to computational designDanil Nagy
 
Studio 4 - workshop introduction
Studio 4 - workshop introductionStudio 4 - workshop introduction
Studio 4 - workshop introductionDanil Nagy
 
Data Mining the City - A (practical) introduction to Machine Learning
Data Mining the City - A (practical) introduction to Machine LearningData Mining the City - A (practical) introduction to Machine Learning
Data Mining the City - A (practical) introduction to Machine LearningDanil Nagy
 

Plus de Danil Nagy (12)

Generative Design - Week 4 - Scripting in Python
Generative Design - Week 4 - Scripting in PythonGenerative Design - Week 4 - Scripting in Python
Generative Design - Week 4 - Scripting in Python
 
Generative Design - Week 3 - Working with data in Grasshopper
Generative Design - Week 3 - Working with data in GrasshopperGenerative Design - Week 3 - Working with data in Grasshopper
Generative Design - Week 3 - Working with data in Grasshopper
 
Generative Design - Week 1 - Introduction to Generative Design
Generative Design - Week 1 - Introduction to Generative DesignGenerative Design - Week 1 - Introduction to Generative Design
Generative Design - Week 1 - Introduction to Generative Design
 
Generative Design - Week 2 - Parametric modeling in rhino and grasshopper
Generative Design - Week 2 - Parametric modeling in rhino and grasshopperGenerative Design - Week 2 - Parametric modeling in rhino and grasshopper
Generative Design - Week 2 - Parametric modeling in rhino and grasshopper
 
SP18 Generative Design - Week 8 - Optimization
SP18 Generative Design - Week 8 - OptimizationSP18 Generative Design - Week 8 - Optimization
SP18 Generative Design - Week 8 - Optimization
 
SP18 Generative Design - Week 7 - GD case studies
SP18 Generative Design - Week 7 - GD case studiesSP18 Generative Design - Week 7 - GD case studies
SP18 Generative Design - Week 7 - GD case studies
 
SP18 Generative Design - Week 6 - Design space design
SP18 Generative Design - Week 6 - Design space designSP18 Generative Design - Week 6 - Design space design
SP18 Generative Design - Week 6 - Design space design
 
SP18 Generative Design - Week 5 - Introduction to simulation
SP18 Generative Design - Week 5 - Introduction to simulationSP18 Generative Design - Week 5 - Introduction to simulation
SP18 Generative Design - Week 5 - Introduction to simulation
 
SP18 Generative Design - Week 4 - Computational control strategies
SP18 Generative Design - Week 4 - Computational control strategiesSP18 Generative Design - Week 4 - Computational control strategies
SP18 Generative Design - Week 4 - Computational control strategies
 
SP18 Generative Design - Week 2 - Introduction to computational design
SP18 Generative Design - Week 2 - Introduction to computational designSP18 Generative Design - Week 2 - Introduction to computational design
SP18 Generative Design - Week 2 - Introduction to computational design
 
Studio 4 - workshop introduction
Studio 4 - workshop introductionStudio 4 - workshop introduction
Studio 4 - workshop introduction
 
Data Mining the City - A (practical) introduction to Machine Learning
Data Mining the City - A (practical) introduction to Machine LearningData Mining the City - A (practical) introduction to Machine Learning
Data Mining the City - A (practical) introduction to Machine Learning
 

Dernier

Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsKarinaGenton
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...M56BOOKSTORE PRODUCT/SERVICE
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfUmakantAnnand
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 

Dernier (20)

Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its Characteristics
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.Compdf
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 

Generative Design - Week 6 - Designing with inputs, objectives, and constraints

  • 1. Generative Design Week 6 – Designing with parameters, objectives, and constraints Danil Nagy September 22, 2019
  • 2. Generative Design September 22, 2019 Optimization Parameters Constraints Objectives
  • 3. Generative Design September 22, 2019 Elements of optimization 1. Parameters – a set of variables that can be adjusted • Continuous – a value within a certain range, represented by a floating point or decimal number • Categorical – a selection from a limited set of options, represented by an integer or whole number • Sequence – an ordering of a set of items, represented by a shuffled sequence of whole numbers 2. Objectives - functions representing the goals of the problem • Minimize value • Maximize value 3. Constraints - functions representing conditions that make a valid solution • Must be equal to a certain value • Must be smaller than a certain value • Must be greater than a certain value
  • 4. Generative Design September 22, 2019 Design space model
  • 5. Generative Design September 22, 2019 1. Generation 2. Selection 3. Crossover 4. Mutation Genetic Algorithm
  • 6. Generative Design September 22, 2019 Genetic Algorithm 1. Generation – the model’s parameters are randomly varied to create a set of initial design options 2. Selection – based on their objective and constraint values, two ‘parent’ designs are chosen from the population and subjected to crossover 3. Crossover – the parameters of the two ‘parent’ designs are recombined to create a new ‘child’ design in the next generation 4. Mutation – the parameters of some ‘child’ designs are randomly changed to introduce new variation into the optimization process Steps 2-4 are repeated to create a specified set of generations or until some termination criteria is met.
  • 7. Generative Design September 22, 2019 Generation 1. Continuous • Must specify minimum and maximum value the parameter can take, as well as the number of parameters to generate • Depending on how parameter is used in the model, can create an infinite number of design variations 2. Categorical • Must specify number of options to choose from and the number of parameters to generate • Creates a limited number of design options which can be computed as where o is the number of options and n is the number of parameters 3. Sequence • Must specify the number of items to order • Creates a limited number of design options which can be computed as where n is the number of items.
  • 8. Generative Design September 22, 2019 Generation o = number of options n = number of parameters number of solutions = o^n 4^5 = 1,024 4^20 = 1,099,511,627,776
  • 9. Generative Design September 22, 2019 Generation n = number of cities number of solutions = n! 10! = 10 * 9 * 8 * 7 * 6 * 5 * 4 * 3 * 2 * 1 = 3,628,800 20! = 2.432902 * 10^18 30! = 2.652529 * 10^32
  • 10. Generative Design September 22, 2019 Generation /src/objects.py
  • 11. Generative Design September 22, 2019 Selection • Typically done in a tournament where two designs are picked randomly from the population and the ‘best’ is selected to be a parent. • To create a single child, a total of four random candidate designs must be chosen. • Picking the ‘best’ design during tournament selection is simple with a single objective, but becomes more complicated with two or more objectives since one candidate may be better at the first objectives while the other is better at the second.
  • 12. Generative Design September 22, 2019 Selection Selection Crossover New child Tournament with single objective
  • 13. Generative Design September 22, 2019 Dominance principle To pick the ‘best’ design with two or more objectives, we first rank the designs according to the dominance principle. A. Konak, D. W. Coit, A. E. Smith - Multi-Objective Optimization Using Genetic Algorithms: A Tutorial (2006)
  • 14. Generative Design September 22, 2019 Dominance principle A solution A dominates another solution B if A performs at least as well as B in every objective, and better than B in at least one objective. A. Konak, D. W. Coit, A. E. Smith - Multi-Objective Optimization Using Genetic Algorithms: A Tutorial (2006)
  • 15. Generative Design September 22, 2019 Assigning rank The Pareto optimal set is the collection of solutions which are not dominated by any other solution in the set. Solutions in this set are assigned a rank of 1. A. Konak, D. W. Coit, A. E. Smith - Multi-Objective Optimization Using Genetic Algorithms: A Tutorial (2006)
  • 16. Generative Design September 22, 2019 Assigning rank By temporarily ignoring the first optimal set, a second optimal set can be formed. Solutions in this set are assigned a rank of 2. A. Konak, D. W. Coit, A. E. Smith - Multi-Objective Optimization Using Genetic Algorithms: A Tutorial (2006)
  • 17. Generative Design September 22, 2019 Assigning rank This process can be repeated to generate the ranking of all solutions. In a tournament, a design in a higher rank is considered better than a design in a lower rank and is chosen to be a parent. A. Konak, D. W. Coit, A. E. Smith - Multi-Objective Optimization Using Genetic Algorithms: A Tutorial (2006)
  • 18. Generative Design September 22, 2019 Crowding distance If both designs are in the same rank, we must pick the ‘best’ design based on other criteria. One option is the crowding distance, which is measured as the distance between the two adjacent solutions in the same rank across all objectives. Kalyanmoy Deb, et al. - A Fast and Elitist Multiobjective Genetic Algorithm: NSGA-II (2002)
  • 19. Generative Design September 22, 2019 Crowding distance Designs with a larger crowding distance are considered better because they represent less explored areas of the designs space. Kalyanmoy Deb, et al. - A Fast and Elitist Multiobjective Genetic Algorithm: NSGA-II (2002)
  • 20. Generative Design September 22, 2019 Feasibility If constraints are used, the design’s feasibility can be added as another criteria for picking the ‘best’ design option. Solutions are considered not feasible if they break the conditions of one or more constraints. Kalyanmoy Deb, et al. - A Fast and Elitist Multiobjective Genetic Algorithm: NSGA-II (2002)
  • 21. Generative Design September 22, 2019 Selection Using the three criteria of feasibility, rank, and crowding distance, we can create a multi-stage decision tree for selecting the ‘best’ design. Kalyanmoy Deb, et al. - A Fast and Elitist Multiobjective Genetic Algorithm: NSGA-II (2002)
  • 22. Generative Design September 22, 2019 Selection Between b and i, which would be chosen?
  • 23. Generative Design September 22, 2019 Selection b is chosen because it has the higher rank.
  • 24. Generative Design September 22, 2019 Selection Between c and h, which would be chosen?
  • 25. Generative Design September 22, 2019 Selection h is chosen because it is feasible.
  • 26. Generative Design September 22, 2019 Selection Between b and d, which would be chosen?
  • 27. Generative Design September 22, 2019 Selection b is chosen because it has a bigger crowding distance.
  • 28. Generative Design September 22, 2019 Crossover During crossover, the parameters of the two ‘parent’ designs are recombined to create a single new ‘child’ design. How this is done depends on the type of parameter used: • With Continuous parameters, a new value is chosen randomly within a ‘window’ formed by the values from the two parents. • With Categorical parameters, the child inherits the value from one of the parents randomly. • With Sequence parameters, we can use the inversion concept to randomly recombine the sequences of both parents while ensuring that the resulting sequence will be valid1. 1. Göktürk Üçoluk - Genetic Algorithm Solution of the TSP Avoiding Special Crossover and Mutation (2002)
  • 29. Generative Design September 22, 2019 Crossover /src/design.py
  • 30. Generative Design September 22, 2019 Crossover /src/design.py
  • 31. Generative Design September 22, 2019 Mutation During mutation, the parameters of the new ‘child’ design are randomly varied based on some specified probability. How this is done depends on the type of parameter used: • With Continuous parameters, the value can be randomly jittered based on a normal distribution. • With Categorical parameters, a new option can be randomly chosen. • With Sequence parameters, we can randomly swap two values in the ordered list a certain number of times.
  • 32. Generative Design September 22, 2019/src/design.py Mutation
  • 33. Generative Design September 22, 2019/src/design.py Mutation
  • 34. Generative Design September 22, 2019/src/design.py Mutation
  • 35. Generative Design September 22, 2019 Evaluating generative models 1. Bias vs. Variance – describes the total variation produced by the model. • Models that are so constrained that they do not produce an adequate amount of variation are considered too biased. • Models that create so much variation that they can’t be efficiently searched by an optimization algorithm are considered too variant. • We can think of this as describing the limits or extents of the design space generated by the model. 2. Complexity vs. Continuity – describes how the model reacts to small changes in its parameters • The more smoothly the model changes with its parameters the more continuous it is. • Complex logics in the model can create a more complex relationship between the parameters and the model. • The more continuous a model, the easier it is to optimize but the less likely you are to get unexpected results. • We can think of this as describing the internal structure of the design space generated by the model.
  • 36. Generative Design September 22, 2019 Troubleshooting Issue Possible cause Possible solution The optimization process converges too quickly on a design which may not be optimal. The model may be too biased, so it is not able to create the necessary variation to find the best design options. Modify the model to create more variation based on the existing parameters, add more parameters, or try parameters of different types. There may not be enough designs in each generation to produce enough variation among the designs. Rerun the optimization with a larger number of designs for each generation. The mutation rate may too low to introduce enough variation during the optimization process. Rerun the optimization with a higher mutation rate. The optimization process converges too quickly on a solution which is obvious. The model may be too continuous with a very direct relationship between its input parameters and the output goals and constraints. The problem the model represents may be too simple and obvious to make optimization worthwhile. In this case a heuristic solution may be best. The optimization process is very slow and seems to have trouble converging on the best designs. The model may be too variant which makes it difficult for the optimization algorithm to find trends in the design space and narrow in on the best design strategies. Constrain the model or limit the number of parameters so it can more easily be searched by the optimization algorithm. There is no discernable trend in the optimization process towards better designs. The model may be too complex and discontinuous, which makes it difficult for the algorithm to find trends and create better designs. Reduce or simplify the model’s parameters and make the relationship between the parameters and the model as direct as possible. The mutation rate may be so high that it is disrupting the algorithm’s ability to evolve better designs. Rerun the optimization with a lower mutation rate.
  • 37. Generative Design September 22, 2019 5 guidelines for designing better generative models 1. Minimize the number of parameters as much as possible (Occam’s razor) 2. Make the parameters as continuous as possible 3. Limit the design space to only feasible designs as much as possible 4. Make the model computation as fast as possible 5. Minimize randomness in the model as much as possible