RTUEE / EC / EEEYr 2023 · Sem 82023

Q6Soft Computing

Question

8 marks

Q.6. (a) With the help of a block diagram explain Genetic Neuro Hybrid Systems. [4]

(b) Write a note on Fuzzy Qualifiers. [4]

Answer

Genetic Neuro Hybrid Systems

Genetic-neuro hybrid systems combine genetic algorithms with artificial neural networks, most commonly using the genetic algorithm to optimize the neural network's architecture (number of layers and neurons) or its connection weights, exploiting the genetic algorithm's global search capability to avoid the local minima that gradient-based training methods such as backpropagation can become trapped in.

Genetic AlgorithmNeural Network(weights/structure)Fitness Eval

In this arrangement, each candidate solution (chromosome) in the genetic algorithm's population encodes a specific neural network configuration (such as a vector of connection weights, or a structural encoding of the number of hidden neurons), and the fitness of each chromosome is evaluated by constructing the corresponding neural network and measuring its performance (such as classification accuracy or mean squared error) on a training or validation dataset; the genetic algorithm then applies selection, crossover, and mutation to evolve progressively better-performing network configurations across successive generations.

Fuzzy Qualifiers

Fuzzy qualifiers modify a base fuzzy proposition to express an additional degree of truth, probability, or possibility, rather than simply asserting the proposition outright. Truth qualifiers (such as 'very true', 'fairly true', 'false') modify the certainty with which a proposition 'x is A' is asserted, effectively transforming the membership function through a modifier operation. Probability qualifiers (such as 'likely', 'unlikely') express the likelihood of a fuzzy event occurring. Possibility qualifiers express the degree to which a proposition is possible rather than certain. Qualified propositions allow fuzzy logic to express nuanced, hedge-modified natural language statements (such as 'it is very likely that the temperature is high') that more closely reflect natural human linguistic expression than simple, unqualified fuzzy propositions alone.

Back to Paper