1.3.0 • Published 2 years ago

javascript-fuzzylogic v1.3.0

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

javascript-fuzzylogic is a tool to utilise fuzzy logic in JavaScript. Code is hosted here.

In a classical set, the membership, μA(x) of x, of a set, A, in universe, X, is defined:

μA(x) = (
    1, iff x ∈ A
    0, iff x ∈/ A
)

That is, the element is either in the set, or not. In a fuzzy set, however, we have grades of membership, which are real numbers in the interval, μA(x) ∈ 0, 1. Every member of a set has a membership grade to that set, depicting how true the property represented by that set is, for the given member. As an example, in the image below we have three sets (cold, warm, and hot) that represent the temperature of some thing. Instead of using one of those words to describe a particular value of x, such as "if x is 35 then it's warm", we can be a lot more specific. In this case, μ(35) is 0.25 cold, 0.75 warm, and 0 hot - which is a lot more specific.

Alt text

Let's build an example set to demonstrate:

// We start by creating our fuzzy sets (or membership functions) that will make up our variables
// How to construct fuzzy sets is dealt with below
const serviceGood = new FuzzySet('good', { initParams })
const serviceBad = new FuzzySet('bad', { initParams })

const foodTasty = new FuzzySet('tasty', { initParams })
const foodGross = new FuzzySet('gross', { initParams })

const cheapTip = new FuzzySet('cheap', { initParams })
const generousTip = new FuzzySet('generous', { initParams })

// Then, we tie these fuzzy sets to variables
const serviceVariable = new LinguisticVariable('service')
  .addSet(serviceGood)
  .addSet(serviceBad)

const foodVariable = new LinguisticVariable('food')
  .addSet(foodTasty)
  .addSet(foodGross)

const tipVariable = new LinguisticVariable('tip')
  .addSet(cheapTip)
  .addSet(generousTip)

// Now that we have variables with sets, we attach them to a fuzzy inference system
const exampleFIS = new FuzzyInferenceSystem('Example')
    .addInput(serviceVariable)
    .addInput(foodVariable)
    .addOutput(tipVariable);

// Finally we add rules to our system, written in natural language
// The values must match our variables and their fuzzy sets
exampleFIS.addRule('IF service IS good AND food IS tasty THEN tip IS generous')
exampleFIS.addRule('IF service IS bad OR food IS gross THEN tip IS cheap')

Now we have a FIS, what can we actually do with is? We can run the solve function, which will take values for each of our inputs ('food' and 'service') in this case, and return us a single value for how much we should tip!

exampleFIS.solve('mamdani', {service: 10, food: 10}, DefuzzifcationType.Centroid)
=> 30

In the above example, we scored the service 10/10 and the food 10/10, so the tip given to us was 30% (of a possible 30), which makes sense, as the service and food were both excellent. The defuzzification type is discussed more below. Mamdani is the only inference type available currently.

To construct a fuzzy set, use the FuzzySet constructor. The name parameter is mandatory, with an optional array of FuzzyValue to populate the values

const f1 = new FuzzySet('Empty set example');
// or
const values: FuzzyValue[] = [
    {
        membership: 1,
        value: 0
    },
    {
        membership: 0,
        value: 10
    }
]
const f2 = new FuzzySet('Set with values', values);

We can run operators on these fuzzy sets like so:

const f1 = new FuzzySet('Fuzzy set', values);
f1.height();
// or
height(f1);

The available operators are details in the API section below.

If you do not specify the values of the set, these can instead by generated by a membership function. Currently supported membership functions are Triangular, Trapezoidal, Gaussian and Sigmoidal. These can be used to generate values like so:

const f1 = new FuzzySet('Empty set example');

f1.generateMembershipValues({
    type: 'Triangular',
    parameters: {
        left: 20,
        center: 60,
        right: 80,
        minValue: 0,
        maxValue: 100,
        step: 10,
    }
})

console.log(f1.values)
=> [
        {value: 0, membership: 0},
        {value: 10, membership: 0},
        {value: 20, membership: 0},
        {value: 30, membership: 0.25},
        {value: 40, membership: 0.5},
        {value: 50, membership: 0.75},
        {value: 60, membership: 1},
        {value: 70, membership: 0.5},
        {value: 80, membership: 0},
        {value: 90, membership: 0},
        {value: 100, membership: 0}
    ]
// Formula: Math.max(Math.min((xValue - left) / (center - left), (right - xValue) / (right - center)), 0)
const f1 = new FuzzySet('Empty set example');
f1.generateMembershipValues({
    type: 'Triangular',
    parameters: {
        left: 20,
        center: 60,
        right: 80,
        minValue: 0,
        maxValue: 100,
        step: 10,
    }
})

The above code would create a fuzzy set that would look like:

Alt text

// Formula: Math.max(Math.min((xValue - bottomLeft) / (topLeft - bottomLeft), 1, (bottomRight - xValue) / (bottomRight - topRight)), 0);
const f1 = new FuzzySet('Empty set example');
f1.generateMembershipValues({
    type: 'Trapezoidal',
    parameters: {
        bottomLeft: 10,
        topLeft: 20,
        topRight: 60,
        bottomRight: 95,
        minValue: 0,
        maxValue: 100,
        step: 10,
    }
})

Alt text

// Formula: Math.exp(-0.5 * Math.pow((xValue - center) / standardDeviation, 2))
const f1 = new FuzzySet('Empty set example');
f1.generateMembershipValues({
    type: 'Gaussian',
    parameters: {
        center: 50,
        standardDeviation: 20,
        minValue: 0,
        maxValue: 100,
        step: 10,
    }
})

Alt text

// Formula: 1 / (1 + Math.exp(-slope * (xValue - center)))
const f1 = new FuzzySet('Empty set example');
f1.generateMembershipValues({
    type: 'Sigmoidal',
    parameters: {
        slope: -2,
        center: 5,
        minValue: 0,
        maxValue: 100,
        step: 10,
    }
})

Alt text

Defuzzification is the process of taking a fuzzy set and producing a single crisp value to represent it. Currently four defuzzication methods are implemented: centroid (center of gravity), mean of maxima, smallest of maxima, and largest of maxima. Defuzzification is used at the end of processing a fuzzy inference system to provide a single result that can represent all the values of that system, after the inputs and rules have been processed.

const f1 = new FuzzySet('Fuzzy set', values);
f1.defuzzify('Centroid')
=> 10 // some single crisp value

Alt text

Alt text

Alt text

functionargsdescription
constructor(name: string, inputs?: LinguisticVariable[], outputs?: LinguisticVariable[])Create the FIS. Inputs and outputs are optional
addInput(variable: LinguisticVariable)Adds the input to the system, returns this for chaining
addOutput(variable: LinguisticVariable)Adds the output to the system, returns this for chaining
addRule(rule: string)Adds natural language rule to the system, returns this for chaining
solve(type: 'Mamdani', args: Record<string, number>, defuzzicationMethod: DefuzzicationType)Runs inference on the fuzzy system to produce a single value result
functionargsdescription
constructor(name: string, fuzzySets?: FuzzySet[])Creates the variable, sets are optional
addSet(set: FuzzySet)Adds a set to the variable
getSet(name: string)Gets the given set, by name
functionargsdescription
constructor(operator: LinguisticRuleOperator, antecedents: Antecedent[], consequent: Consequent)Creates the rule, LinguisticRuleOperator is the AND/OR parameter. Antecedents are the inputs (everything that would come before a 'THEN') and the consequent is the output (everything after the 'then'). It's much each to create a rule from a FIS with .addRule(), and then use natural language to specify the rule.
prettyPrintN/AReturns a string of the rule, written in natural language
operationparametersdescription
constructor(name: string, initialValues?: FuzzyValue[])Create a set, initial values are optional and can be generated with a membership function
alphacut(set: FuzzySet, alpha: number, strong: boolean = false)An α-cut of a fuzzy set, A, is a crisp set, Aα, that contains all elements of A, with membership greater than or equal to the specified value of α. A strong α-cut is the same, but only those values that have membership greater than α, instead of those greater or equal.
support(set: FuzzySet)The support of a fuzzy set, A, is a strong α-cut of A, where α = 0. Thus, the support of a fuzzy set is all non zero values of that set.
height(set: FuzzySet)The height of a fuzzy set is the largest membership grade attained by any element of that set.
isNormal(set: FuzzySet)A fuzzy set is said to be normalised if at least one its elements attains the maximum possible membership grade (of 1).
isConvex(set: FuzzySet)NOT YET IMPLEMENTED - A set is convex if we cannot draw a line from two points on the set that cross the set at any point.
complement(set: FuzzySet)The complement,of a fuzzy set is a fuzzy set in which the value of membership for each member is (1 - μ) (where μ is the membership grade in the original set)
union(setA: FuzzySet, setB: FuzzySet)The union of two fuzzy sets, A and B, is a new fuzzy set with all values with the maximum membership value
intersection(setA: FuzzySet, setB: FuzzySet)The intersection of two fuzzy sets, A and B, is a new fuzzy set with all values with the minimum membership valuegenerateMembershipValues(mf: MembershipFunction)Given a membership function, of type T, generate all the values of that membership function and store them in the fuzzy set
defuzzify(type: DefuzzicationType)Return a single crisp value for this set, based on the defuzzication method provided
getPlottableValuesN/AReturns an object { xValues: number[]; membershipValues: number[] } that contains all the xValues and membership values (yValues) for easier plotting
getMembership(xValue: number)For the given xValue, determine it's degree of membership to the set
1.3.0

2 years ago

1.2.1

2 years ago

1.2.0

2 years ago

1.1.0

2 years ago

1.0.0

2 years ago

0.1.0

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago