• Keine Ergebnisse gefunden

Search Based Software Engineering Exercise 04 - Multi Objective Optimization - Pareto Front 2019-06-18

N/A
N/A
Protected

Academic year: 2022

Aktie "Search Based Software Engineering Exercise 04 - Multi Objective Optimization - Pareto Front 2019-06-18"

Copied!
2
0
0

Wird geladen.... (Jetzt Volltext ansehen)

Volltext

(1)

Search Based Software Engineering

Exercise 04 - Multi Objective Optimization - Pareto Front 2019-06-18

Deadline: 2019-07-01 23:59

Submit to: andre.karge@uni-weimar.de Submission details:

• This assignment is for the students of the Digital Engineering program!

• compress your files (.zip or .tar.gz or .rar)

• Include a text file with the names, matrikel numbers and degree program for each group member!

• Submit a .py file for your solution (no .ipynb files!)

• Submit a .pdf file for theory tasks.

Name your compressed file: <lastname> <firstname> <matrikelnummer>-ex<exercise-number>(.tar.gz or .rar or .zip)

or for more than one student: please use this format for all group members example:norris chuck 123456-schwarzenegger arnold 121212-ex01.tar.gz

Groups: submit your solved assignment in groups of 2 Language: Python 3

Problem Description

Task 1. Pareto Front (7 points)

a) What are the Pareto Front and Pareto Dominance? Explain in your own words!

b) Given the following table, which individuals are dominated and which are non-dominated?

Feature min.↓/max. ↑problem individual 1 individual 2 individual 3

Performance in s ↓ 125 97 224

Memory in s ↓ 80 97 50

Energy in J ↓ 2150 1850 5150

Reliability in d ↑ 238 138 538

ranking ↓ 4 2 3

Task 2. Extended (9 points)

a) What is sparsity? Explain in your own words and give an example!

b) What is pareto strength? Explain in your own words and give an example!

c) What is wimpiness? Explain in your own words and give an example!

Hint: you can also use a visualization for your examples

1

(2)

Task 3. Pareto Front Algorithm (10 points)

a) Implement a python function that computes the pareto front ranks for each individual of a popu- lation of m individuals and n numeric features (where n>10).

Create a class for individuals which holds the gene-vector and the pareto front rank of an individual and use this class when working with individuals!

Make sure that you have an appropriate initialization function and fitness assessment (keep in mind we are in multi objective optimization, so different features can have different optimization criteria)!

def c a l c u l a t e p a r e t o f r o n t r a n k ( population ):

” ” ”

C a l c u l a t e s t h e p a r e t o f r o n t r a n k f o r a l l i n d i v i d u a l s i n p o p u l a t i o n .

K e y w o r d a r g u m e n t s :

p o p u l a t i o n −− a l i s t h o l d i n g a l l i n d i v i d u a l s o f t y p e I n d i v i d u a l

f o r t h e c u r r e n t p o p u l a t i o n

” ” ”

pass

def p r i n t p a r e t o r a n k s ( population ):

” ” ”

I t e r a t e o v e r t h e g i v e n p o p u l a t i o n a n d p r i n t t h e p a r e t o f r o n t r a n k f o r e a c h i n d i v i d u a l

K e y w o r d a r g u m e n t s :

p o p u l a t i o n −− a l i s t h o l d i n g a l l i n d i v i d u a l s o f t y p e I n d i v i d u a l

f o r t h e c u r r e n t p o p u l a t i o n

” ” ”

pass

2

Referenzen

ÄHNLICHE DOKUMENTE

– Implement hill climbing during the fitness assessment phase to revise and improve each individual at the time it’s assessed – Revised individuals replace original ones..

– With a different Pareto front distance measure, using the weakness of individuals (i.e., number of individuals that

– Use this fact by maintaining historical quality information of individual components (instead of entire individuals). • When

how to install Python3 with Anaconda on Windows: click how to install Python3 with Anaconda on Ubuntu: click Packet Manager:. sudo apt install python3 python3-pip

“Given is a list of cities and distances between each pair of cities - what is the shortest route that visits each city and returns to the original city..

a) Implement the Particle Swarm Optimization in Python for the given

how to install Python3 with Anaconda on Windows: click how to install Python3 with Anaconda on Ubuntu: click Packet Manager:. sudo apt install python3 python3-pip

“Given is a list of cities and distances between each pair of cities - what is the shortest route that visits each city and returns to the original city..