1 fuzzy expert systems fuzzy inference n mamdani fuzzy inference n sugeno fuzzy inference n case...

52
Fuzzy expert systems Fuzzy expert systems Fuzzy inference Fuzzy inference Mamdani fuzzy inference Mamdani fuzzy inference Sugeno Sugeno fuzzy inference fuzzy inference Case study Case study Summary Summary

Upload: riley-walkington

Post on 29-Mar-2015

262 views

Category:

Documents


7 download

TRANSCRIPT

Page 1: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

1

Fuzzy expert systemsFuzzy expert systems

Fuzzy inferenceFuzzy inference

Mamdani fuzzy inferenceMamdani fuzzy inference SugenoSugeno fuzzy inferencefuzzy inference Case studyCase study SummarySummary

Page 2: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

2

Fuzzy inferenceFuzzy inference

• The most commonly used fuzzy inference technique The most commonly used fuzzy inference technique is the so-called Mamdani method.is the so-called Mamdani method.

• In 1975, Professor In 1975, Professor Ebrahim MamdaniEbrahim Mamdani of London of London University built one of the first fuzzy systems to University built one of the first fuzzy systems to control a steam engine and boiler combination.control a steam engine and boiler combination.

• He applied a set of fuzzy rules supplied by He applied a set of fuzzy rules supplied by experiencedexperienced human operators. human operators.

Page 3: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

3

Mamdani fuzzy inferenceMamdani fuzzy inference

The Mamdani-style fuzzy inference process is The Mamdani-style fuzzy inference process is performed in four steps:performed in four steps:

1.1. fuzzification of the input variables, fuzzification of the input variables,

2.2. rule evaluation; rule evaluation;

3.3. aggregation of the rule outputs, and finallyaggregation of the rule outputs, and finally

4.4. defuzzification.defuzzification.

Page 4: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

4

We examine a simple two-input one-output problem that We examine a simple two-input one-output problem that includes three rules:includes three rules:

Rule: 1Rule: 1 Rule: 1Rule: 1IFIF xx is is AA33 IFIF project_fundingproject_funding is is adequateadequateOROR yy is is BB11 OROR project_staffingproject_staffing is is smallsmallTHEN THEN zz is is CC11 THEN THEN riskrisk is is lowlow

Rule: 2Rule: 2 Rule: 2Rule: 2IFIF x x is is AA22 IFIF project_fundingproject_funding is is marginalmarginalAND AND yy is is BB22 ANDAND project_staffingproject_staffing is is largelargeTHEN THEN zz is is CC22 THEN THEN riskrisk is is normalnormal

Rule: 3Rule: 3 Rule: 3Rule: 3IFIF xx is is AA11 IFIF project_fundingproject_funding is is inadequateinadequateTHEN THEN zz is is CC33 THEN THEN riskrisk is is highhigh

Page 5: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

5

Step 1: FuzzificationStep 1: Fuzzification

The first step is to take the crisp inputs, The first step is to take the crisp inputs, xx1 and 1 and yy1 1 ((project fundingproject funding and and project staffingproject staffing), and determine ), and determine the degree to which these inputs belong to each of the the degree to which these inputs belong to each of the appropriate fuzzy sets.appropriate fuzzy sets.

Crisp Inputy1

0.1

0.71

0y1

B1 B2

Y

Crisp Input

0.20.5

1

0

A1 A2 A3

x1

x1 X

(x = A1) = 0.5

(x = A2) = 0.2

(y = B1) = 0.1

(y = B2) = 0.7

project fundingproject funding project staffingproject staffing

Page 6: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

6

Step 2: Rule EvaluationStep 2: Rule Evaluation• take the fuzzified inputs, take the fuzzified inputs, ((xx==AA1)1) = 0.5, = 0.5, ((xx==AA2)2) = 0.2, = 0.2,

((yy==BB1)1) = 0.1 and = 0.1 and ((yy==BB2)2) = 0.7 = 0.7• apply them to the antecedents of the fuzzy rules.apply them to the antecedents of the fuzzy rules.• If a given fuzzy rule has multiple antecedents, the If a given fuzzy rule has multiple antecedents, the

fuzzy operator (AND or OR) is used to obtain a single fuzzy operator (AND or OR) is used to obtain a single number that represents the result of the antecedent number that represents the result of the antecedent evaluation. This number (the truth value) is then evaluation. This number (the truth value) is then applied to the consequent membership function.applied to the consequent membership function.

Page 7: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

7

To evaluate the disjunction of the rule antecedents, we To evaluate the disjunction of the rule antecedents, we use the use the OR fuzzy operationOR fuzzy operation. Typically, fuzzy expert . Typically, fuzzy expert systems make use of the classical fuzzy operation systems make use of the classical fuzzy operation unionunion::

AABB((xx) = ) = maxmax [ [AA((xx), ), BB((xx)])]

Similarly, in order to evaluate the conjunction of the Similarly, in order to evaluate the conjunction of the rule antecedents, we apply the rule antecedents, we apply the AND fuzzy operationAND fuzzy operation intersectionintersection::

AABB((xx) = ) = minmin [ [AA((xx), ), BB((xx)])]

Page 8: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

8

Mamdani-style rule evaluationMamdani-style rule evaluation

A3

1

0 X

1

y10 Y

0.0

x1 0

0.1C1

1

C2

Z

1

0 X

0.2

0

0.2C1

1

C2

Z

A2

x1

Rule 3:

A11

0 X 0

1

Zx1

THEN

C1 C2

1

y1

B2

0 Y

0.7

B10.1

C3

C3

C30.5 0.5

OR(max)

AND(min)

OR THENRule 1:

AND THENRule 2:

IF x is A3 (0.0) y is B1 (0.1) z is C1 (0.1)

IF x is A2 (0.2) y is B2 (0.7) z is C2 (0.2)

IF x is A1 (0.5) z is C3 (0.5)

Page 9: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

9

• Now the result of the antecedent evaluation can be Now the result of the antecedent evaluation can be applied to the membership function of the applied to the membership function of the consequent.consequent.

• The most common method of correlating the rule The most common method of correlating the rule consequent with the truth value of the rule consequent with the truth value of the rule antecedent is to cut the consequent membership antecedent is to cut the consequent membership function at the level of the antecedent truth.function at the level of the antecedent truth.

• This method is called This method is called clippingclipping. Since the top of the . Since the top of the membership function is sliced, the clipped fuzzy set membership function is sliced, the clipped fuzzy set loses some information. However, clipping is still loses some information. However, clipping is still often preferred because it involves often preferred because it involves less complex and less complex and faster mathematics, and generates an aggregated faster mathematics, and generates an aggregated output surface that is easier to defuzzify.output surface that is easier to defuzzify.

Page 10: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

10

While clipping is a frequently used method, While clipping is a frequently used method, scalingscaling offers a better approach for preserving the original offers a better approach for preserving the original shape of the fuzzy set.shape of the fuzzy set.

The original membership function of the rule The original membership function of the rule consequent is adjusted by multiplying all its consequent is adjusted by multiplying all its membership degrees by the truth value of the rule membership degrees by the truth value of the rule antecedent.antecedent.

This method, which generally loses less information, This method, which generally loses less information, can be very useful in fuzzy expert systems.can be very useful in fuzzy expert systems.

Page 11: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

11

Clipped and scaled membership functionsClipped and scaled membership functions

Degree ofMembership1.0

0.0

0.2

Z

Degree ofMembership

Z

C2

1.0

0.0

0.2

C2

Page 12: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

12

Step 3: Aggregation of the rule outputsStep 3: Aggregation of the rule outputs• Aggregation is the process of unification of the Aggregation is the process of unification of the

outputs of all rules.outputs of all rules.• We take the membership functions of all rule We take the membership functions of all rule

consequents previously clipped or scaled and combine consequents previously clipped or scaled and combine them into a single fuzzy set. them into a single fuzzy set.

• The input of the aggregation process is the list of The input of the aggregation process is the list of clipped or scaled consequent membership functions, clipped or scaled consequent membership functions, and the output is one fuzzy set for each output and the output is one fuzzy set for each output variable.variable.

Page 13: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

13

Aggregation of the rule outputsAggregation of the rule outputs

00.1

1C1

Cz is 1 (0.1)

C2

0

0.2

1

Cz is 2 (0.2)

0

0.5

1

Cz is 3 (0.5)

ZZZ

0.2

Z0

C30.5

0.1

Page 14: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

14

Step 4: DefuzzificationStep 4: Defuzzification• The last step in the fuzzy inference process is The last step in the fuzzy inference process is

defuzzification.defuzzification.• Fuzziness helps us to evaluate the rules, but the Fuzziness helps us to evaluate the rules, but the

final output of a fuzzy system has to be a crisp final output of a fuzzy system has to be a crisp number.number.

• The input for the defuzzification process is the The input for the defuzzification process is the aggregate output fuzzy set and the output is a single aggregate output fuzzy set and the output is a single number.number.

Page 15: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

15

There are several defuzzification methods, but There are several defuzzification methods, but probably the most popular one is the probably the most popular one is the centroid centroid techniquetechnique..

It finds the point where a vertical line would slice It finds the point where a vertical line would slice the aggregate set into two equal masses. the aggregate set into two equal masses. Mathematically this Mathematically this centre of gravity (COG)centre of gravity (COG) can can be expressed as:be expressed as:

b

aA

b

aA

dxx

dxxx

COG

Page 16: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

16

Centroid defuzzification method finds a point Centroid defuzzification method finds a point representing the centre of gravity of the fuzzy set, representing the centre of gravity of the fuzzy set, AA, , on the interval, on the interval, abab..

A reasonable estimateA reasonable estimate can be obtained by calculating can be obtained by calculating it over a sample of points.it over a sample of points.

( x )

1.0

0.0

0.2

0.4

0.6

0.8

160 170 180 190 200

a b

210

A

150X

Page 17: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

17

Centre of gravity (COG):Centre of gravity (COG):

4.675.05.05.05.02.02.02.02.01.01.01.0

5.0)100908070(2.0)60504030(1.0)20100(

COG

1.0

0.0

0.2

0.4

0.6

0.8

0 20 30 40 5010 70 80 90 10060

Z

Degree ofMembership

67.4

Page 18: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

18

Mamdani-style inference, as we have just seen, Mamdani-style inference, as we have just seen, requires us to find the centroid of a two-dimensional requires us to find the centroid of a two-dimensional shape by integrating across a continuously varying shape by integrating across a continuously varying function. In general, this process is not function. In general, this process is not computationally efficient.computationally efficient.

Michio SugenoMichio Sugeno suggested to use a single spike, a suggested to use a single spike, a singletonsingleton, as the membership function of the rule , as the membership function of the rule consequent.consequent.

A A singletonsingleton, or more precisely a , or more precisely a fuzzy singletonfuzzy singleton, is , is a fuzzy set with a membership function that is unity a fuzzy set with a membership function that is unity at a single particular point on the universe of at a single particular point on the universe of discourse and zero everywhere else.discourse and zero everywhere else.

Sugeno fuzzy inferenceSugeno fuzzy inference

Page 19: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

19

Sugeno-style fuzzy inference is very similar to the Sugeno-style fuzzy inference is very similar to the Mamdani method.Mamdani method.

Sugeno changed only a rule consequent. Instead of a Sugeno changed only a rule consequent. Instead of a fuzzy set, he used a mathematical function of the fuzzy set, he used a mathematical function of the input variable.input variable.

The format of the The format of the Sugeno-style fuzzy ruleSugeno-style fuzzy rule is is

IFIF xx is is AAANDAND yy is is BBTHEN THEN zz is is f f ((x, yx, y))

where where xx, , yy and and zz are linguistic variables; are linguistic variables; AA and and BB are are fuzzy sets on universe of discourses fuzzy sets on universe of discourses XX and and YY, , respectively; and respectively; and f f ((x, yx, y) is a mathematical function.) is a mathematical function.

Page 20: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

20

The most commonly used The most commonly used zero-order Sugeno fuzzy zero-order Sugeno fuzzy modelmodel applies fuzzy rules in the following form: applies fuzzy rules in the following form:

IFIF xx is is AAANDAND yy is is BBTHEN THEN zz is is kk

where where kk is a constant. is a constant.

In this case, the output of each fuzzy rule is constant. In this case, the output of each fuzzy rule is constant. All consequent membership functions are represented All consequent membership functions are represented by singleton spikes.by singleton spikes.

Page 21: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

21

A3

1

0 X

1

y10 Y

0.0

x1 0

0.1

1

Z

1

0 X

0.2

0

0.2

1

Z

A2

x1

IF x is A1 (0.5) z is k3 (0.5)Rule 3:

A11

0 X 0

1

Zx1

THEN

1

y1

B2

0 Y

0.7

B10.1

0.5 0.5

OR(max)

AND(min)

OR y is B1 (0.1) THEN z is k1 (0.1)Rule 1:

IF x is A2 (0.2) AND y is B2 (0.7) THEN z is k2 (0.2)Rule 2:

k1

k2

k3

IF x is A3 (0.0)

Sugeno-style rule evaluationSugeno-style rule evaluation

Page 22: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

22

Sugeno-style Sugeno-style aggregation of the rule outputsaggregation of the rule outputs

z is k1 (0.1) z is k2 (0.2) z is k3 (0.5) 0

1

0.1Z 0

0.5

1

Z0

0.2

1

Zk1 k2 k3 0

1

0.1Zk1 k2 k3

0.20.5

Page 23: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

23

Weighted average (WA):Weighted average (WA):

655.02.01.0

805.0502.0201.0

)3()2()1(

3)3(2)2(1)1(

kkk

kkkkkkWA

0 Z

Crisp Outputz1

z1

Sugeno-style Sugeno-style defuzzificationdefuzzification

Page 24: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

24

How to make a decision on which method How to make a decision on which method to apply to apply Mamdani or Sugeno? Mamdani or Sugeno? Mamdani method is widely accepted for capturing Mamdani method is widely accepted for capturing

expert knowledge. It allows us to describe the expert knowledge. It allows us to describe the expertise in more intuitive, more human-like expertise in more intuitive, more human-like manner. However, Mamdani-type fuzzy inference manner. However, Mamdani-type fuzzy inference entails a substantial computational burden. entails a substantial computational burden.

On the other hand, Sugeno method is On the other hand, Sugeno method is computationally effective and works well with computationally effective and works well with optimization and adaptive techniques, which makes optimization and adaptive techniques, which makes it very attractive in control problems, particularly it very attractive in control problems, particularly for dynamic nonlinear systems.for dynamic nonlinear systems.

Page 25: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

25

Page 26: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

26

Building a fuzzy expert system: case studyBuilding a fuzzy expert system: case study

A service centre keeps spare parts and repairs failed A service centre keeps spare parts and repairs failed ones. ones.

A customer brings a failed item and receives a spare A customer brings a failed item and receives a spare of the same type. of the same type.

Failed parts are repaired, placed on the shelf, and Failed parts are repaired, placed on the shelf, and thus become spares. thus become spares.

The objective here is to advise a manager of the The objective here is to advise a manager of the service centre on certain decision policies to keep service centre on certain decision policies to keep the customers satisfied.the customers satisfied.

Page 27: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

27

Process of developing a fuzzy expert systemProcess of developing a fuzzy expert system

1. Specify the problem and define linguistic variables.1. Specify the problem and define linguistic variables.

2. Determine fuzzy sets.2. Determine fuzzy sets.

3. Construct fuzzy rules.3. Construct fuzzy rules.

4. Encode the fuzzy sets, fuzzy rules and procedures 4. Encode the fuzzy sets, fuzzy rules and procedures

to perform fuzzy inference into the expert system.to perform fuzzy inference into the expert system.

5. Evaluate and tune the system.5. Evaluate and tune the system.

Page 28: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

28

Step Step 11: Specify the problem and define: Specify the problem and define linguistic variableslinguistic variables

There are four main linguistic variables: average There are four main linguistic variables: average waiting time (mean delay) waiting time (mean delay) mm, repair utilization , repair utilization factor of the service centre factor of the service centre , number of servers , number of servers ss, , and number of spare parts and number of spare parts nn..

Page 29: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

29

Linguistic variables and their rangesLinguistic variables and their ranges

Page 30: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

30

Step Step 22: Determine fuzzy sets: Determine fuzzy sets

Fuzzy sets can have a variety of shapes. However, Fuzzy sets can have a variety of shapes. However, a triangle or a trapezoid can often provide an a triangle or a trapezoid can often provide an adequate representation of the expert knowledge, adequate representation of the expert knowledge, and at the same time, significantly simplifies the and at the same time, significantly simplifies the process of computation.process of computation.

Page 31: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

31

Fuzzy sets of Fuzzy sets of Mean Delay mMean Delay m

0.10

1.0

0.0

0.2

0.4

0.6

0.8

0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1Mean Delay (normalised)

SVS M

Degree of Membership

Page 32: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

32

Fuzzy sets of Fuzzy sets of Number of Servers sNumber of Servers s

0.10

1.0

0.0

0.2

0.4

0.6

0.8

0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1

M LS

Degree of Membership

Number of Servers (normalised)

Page 33: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

33

Fuzzy sets of Fuzzy sets of Repair Utilisation Factor Repair Utilisation Factor

0.10

1.0

0.0

0.2

0.4

0.6

0.8

0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1Repair Utilisation Factor

M HL

Degree of Membership

Page 34: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

34

Fuzzy sets of Fuzzy sets of Number of Spares nNumber of Spares n

0.10

1.0

0.0

0.2

0.4

0.6

0.8

0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1

S RSVS M RL L VL

Degree of Membership

Number of Spares (normalised)

Page 35: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

35

Step Step 33: Construct fuzzy rules: Construct fuzzy rules

To accomplish this task, we might ask the expert to To accomplish this task, we might ask the expert to describe how the problem can be solved using the describe how the problem can be solved using the fuzzy linguistic variables defined previously.fuzzy linguistic variables defined previously.

Required knowledge also can be collected from Required knowledge also can be collected from other sources such as books, computer databases, other sources such as books, computer databases, flow diagrams and observed human behaviour. flow diagrams and observed human behaviour.

Page 36: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

36

The square FAM representationThe square FAM representation((Fuzzy Associative Memory )Fuzzy Associative Memory )

m

s

M

RL

VL

S

RS

L

VS

S

M

VS S M

L

M

S

Page 37: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

37

The rule tableThe rule table

Page 38: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

38

Rule Base 1Rule Base 1

Page 39: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

39

Cube FAM of Rule Base 2Cube FAM of Rule Base 2

VS VS VSVS VS VSVS VS VS

VL L M

HS

VS VS VSVS VS VSVS VS VSM

VS VS VSVS VS VSS S VSL

s

LVS S M

m

MH

VS VS VS

LVS S M

S

m

VS VS VSM

S S VSL

s

S VS VS

MVS S M

m

VS S M

m

S

RS S VSM

M RS SL

s

S

M M SM

RL M RSL

s

Page 40: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

40

Step Step 44: Encode the fuzzy sets, fuzzy rules: Encode the fuzzy sets, fuzzy rules and procedures to perform fuzzyand procedures to perform fuzzy inference into the expert systeminference into the expert systemTo accomplish this task, we may choose one of To accomplish this task, we may choose one of two options: to build our system using a two options: to build our system using a programming language such as C/C++ or Pascal, programming language such as C/C++ or Pascal, or to apply a fuzzy logic development tool such as or to apply a fuzzy logic development tool such as MATLAB Fuzzy Logic Toolbox or Fuzzy MATLAB Fuzzy Logic Toolbox or Fuzzy Knowledge Builder.Knowledge Builder.

Page 41: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

41

Step Step 55: Evaluate and tune the system: Evaluate and tune the system

The last, and the most laborious, task is to evaluate The last, and the most laborious, task is to evaluate and tune the system. We want to see whether our and tune the system. We want to see whether our fuzzy system meets the requirements specified at fuzzy system meets the requirements specified at the beginning. the beginning.

Several test situations depend on the mean delay, Several test situations depend on the mean delay, number of servers and repair utilisation factor. number of servers and repair utilisation factor.

The Fuzzy Logic Toolbox can generate surface to The Fuzzy Logic Toolbox can generate surface to help us analyse the system’s performance.help us analyse the system’s performance.

Page 42: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

42

Three-dimensional plots for Rule Base 1Three-dimensional plots for Rule Base 1

00.2

0.40.6

0.81

0

0.2

0.4

0.6

0.2

0.3

0.4

0.5

0.6

number_of_serversmean_delay

nu

mb

er_

of_

spa

res

Page 43: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

43

Three-dimensional plots for Rule Base 1Three-dimensional plots for Rule Base 1

00.2

0.40.6

0.81

0

0.2

0.4

0.6

0.2

0.3

0.4

0.5

0.6

utilisation_factormean_delay

nu

mb

er_

of_

spa

res

Page 44: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

44

Three-dimensional plots for Rule Base 2Three-dimensional plots for Rule Base 2

00.2

0.40.6

0.81

0

0.2

0.4

0.6

0.15

0.2

0.25

0.3

0.35

number_of_serversmean_delay

nu

mb

er_

of_

spa

res

Page 45: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

45

Three-dimensional plots for Rule Base 2Three-dimensional plots for Rule Base 2

00.2

0.40.6

0.81

0

0.2

0.4

0.6

0.2

0.3

0.4

utilisation_factormean_delay

num

ber

_of_

spar

es

0.5

Page 46: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

46

However, even now, the expert might not be However, even now, the expert might not be satisfied with the system performance. satisfied with the system performance.

To improve the system performance, we may use To improve the system performance, we may use additional sets additional sets Rather SmallRather Small and and Rather LargeRather Large on the universe of discourse on the universe of discourse Number of ServersNumber of Servers, , and then extend the rule base.and then extend the rule base.

Page 47: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

47

Modified fuzzy sets of Modified fuzzy sets of Number of Servers sNumber of Servers s

0.10

1.0

0.0

0.2

0.4

0.6

0.8

0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1Number of Servers (normalised)

RS M RL LS

Degree of Membership

Page 48: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

48

Cube FAM of Rule Base 3Cube FAM of Rule Base 3

VS VS VS

VS VS VS

VS VS VS

VS VS VS

VS VS VS

VS VS VS

VS VS VS

VS VS VS

VS VS VS

VS VS VS

VS VS VS

VS VS VS

VS VS VS

S S VS

S S VS

VL L M

VL RL RS

M M S

RL M RS

L M RS

HS

M

RL

L

RS

s

LVS S M

m

MH

VS VS VS

VS VS VS

VS VS VS

S S VS

S S VS

LVS S M

S

M

RL

L

RS

m

s

S VS VS

S VS VS

RS S VS

M RS S

M RS S

MVS S M

m

VS S M

m

S

M

RL

L

RS

s

S

M

RL

L

RS

s

Page 49: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

49

Three-dimensional plots for Rule Base 3Three-dimensional plots for Rule Base 3

00.2

0.40.6

0.81

0

0.2

0.4

0.6

0.15

0.2

0.25

0.3

0.35

number_of_serversmean_delay

num

ber

_of_

spar

es

Page 50: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

50

Three-dimensional plots for Rule Base 3Three-dimensional plots for Rule Base 3

00.2

0.40.6

0.81

0

0.2

0.4

0.6

0.2

0.3

0.4

utilisation_factormean_delay

nu

mb

er_

of_

spa

res

0.5

Page 51: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

51

Tuning fuzzy systems Tuning fuzzy systems

1.1. Review model input and output variables, and if Review model input and output variables, and if required redefine their ranges.required redefine their ranges.

2.2. Review the fuzzy sets, and if required define Review the fuzzy sets, and if required define additional sets on the universe of discourse.additional sets on the universe of discourse. The use of wide fuzzy sets may cause the fuzzyThe use of wide fuzzy sets may cause the fuzzy system to perform roughly.system to perform roughly.

3.3. Provide sufficient overlap between neighbouring Provide sufficient overlap between neighbouring sets. It is suggested that triangle-to-triangle and sets. It is suggested that triangle-to-triangle and trapezoid-to-triangle fuzzy sets should overlap trapezoid-to-triangle fuzzy sets should overlap between 25% to 50% of their bases.between 25% to 50% of their bases.

Page 52: 1 Fuzzy expert systems Fuzzy inference n Mamdani fuzzy inference n Sugeno fuzzy inference n Case study n Summary

52

4.4. Review the existing rules, and if required add new Review the existing rules, and if required add new rules to the rule base.rules to the rule base.

5.5. Examine the rule base for opportunities to write Examine the rule base for opportunities to write hedge rules to capture the pathological behaviour hedge rules to capture the pathological behaviour of the system.of the system.

6.6. Adjust the rule execution weights. Most fuzzy Adjust the rule execution weights. Most fuzzy logic tools allow control of the importance of rules logic tools allow control of the importance of rules by changing a weight multiplier.by changing a weight multiplier.

7.7. Revise shapes of the fuzzy sets. In most cases, Revise shapes of the fuzzy sets. In most cases, fuzzy systems are highly tolerant of a shape fuzzy systems are highly tolerant of a shape approximation.approximation.