Consider the following table defining the sample inputs and corresponding target values for a perceptron model.
| Sample No | x1 | x2 | target | w1 | w2 |
|---|---|---|---|---|---|
| S1 | 0 | 0 | 0 | 0 | 0 |
| S2 | 0 | 1 | 1 | ||
| S3 | 1 | 0 | 1 | ||
| S4 | 1 | 1 | 1 |
What shall be the value of updated weights after applying all the samples S1 to S4 (in the order S1, S2, S3, S4) to this model. Given that the initial weights w1=0, w2=0, learning rate=0.1 and no bias is involved in the perceptron. The activation function for this perceptron is given below:
yobserved =
{ 1 if yin > 0
0 if yin < 0 }
Using perceptron learning rule: Δw = η (t − y) x, where y = 1 if yin > 0 else 0.
S1 (0,0,t=0): yin=0 ⇒ y=0 ⇒ no change ⇒ (w1,w2)=(0,0)
S2 (0,1,t=1): yin=0 ⇒ y=0 ⇒ Δw=0.1(1−0)(0,1) ⇒ (w1,w2)=(0,0.1)
S3 (1,0,t=1): yin=0 ⇒ y=0 ⇒ Δw=0.1(1−0)(1,0) ⇒ (w1,w2)=(0.1,0.1)
S4 (1,1,t=1): yin=0.1+0.1=0.2>0 ⇒ y=1 ⇒ no change
Final Weights: w1=0.1, w2=0.1
Answer: (1)
Match List I with List II
| List I (Operations on Fuzzy Sets) | List II (Description) |
|---|---|
| A. Intersection | IV. $\min(\mu_A(x), \mu_B(x))$ |
| B. Bounded Sum | III. $\min(1, \mu_A(x) + \mu_B(x))$ |
| C. Bounded Difference | II. $\max(0, \mu_A(x) - \mu_B(x))$ |
| D. Algebraic Sum | I. $\mu_A(x) + \mu_B(x) - \mu_A(x)\mu_B(x)$ |
Choose the correct answer from the options given below:
Explanation:
| List – I | List – II |
| (A) Natural language processing | (I) A method of training algorithm by rewarding desired behaviour and/or punishing undesired one. |
| (B) Reinforcement learning | (II) System designed to emulate the decision making abilities of a human expert. |
| (C) Support vector machine | (III) A branch of AI focused on understanding and generating human language. |
| (D) Expert system | (IV) A machine learning technique that finds the hyperplane that best separates different classes in a feature space. |
Choose the correct answer from the options given below :
(A) Natural Language Processing
(B) Image Processing
(C) Pattern Recognition
(D) Speech Recognition
Choose the correct answer from the options given below :
Which of the following layers may be more than one in number?
Artificial Neural Networks (ANNs) are inspired by:
What is the role of weights in an ANN?
Online Test Series, Information About Examination,
Syllabus, Notification
and More.
Online Test Series, Information About Examination,
Syllabus, Notification
and More.