Answered step by step
Verified Expert Solution
Question
1 Approved Answer
A produce dealer has a warehouse that stores a variety of fruits and vegetables. When fruit is brought to the warehouse, various types of fruit
A produce dealer has a warehouse that stores a variety of fruits and vegetables.
When fruit is brought to the warehouse, various types of fruit may be mixed together.
The dealer wants a machine that will sort the fruit according to type. There is a
conveyer belt on which the fruit is loaded. This conveyer passes through a set of
sensors which measure three properties of the fruit: shape, texture and weight. These
sensors are somewhat primitive. The shape sensor will output a if the fruit is
approximately round and if it is more elliptical. The texture sensor will output a
if the surface of the fruit is smooth and if it is rough. The weight sensor will
output a if the fruit is more than one pound and a if it is less than one pound. The
three sensor outputs will then be input to a neural network. The purpose of the
network is to decide which kind of fruit is on the conveyor, so that the fruit can be
directed to the correct storage bin. To make the problem even simpler, let's assume
that there are only two kinds of fruit on the conveyor: apples and oranges.
As each fruit passes through the sensors it can be represented by a three dimensional
vector. The first element of the vector will represent shape, the second element will
represent texture and the third element will represent weight as below.
The neural network will receive one threedimensional input vector for each fruit on
the conveyer and must make a decision as to whether the fruit is an orange or an
apple
a Write down the prototype templates for orange and apple
b Design a perceptron to recognize these patterns.
c Design a Hamming network to recognize these patterns.
d Design a Hopfield network to recognize these patterns.
e Test the operation of your networks by applying several different input
patterns. Discuss the advantages and disadvantages of each network.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started