Question: 1 . Define an Artificial Neuron Network ( ANN ) model as; - 5 input, 2 hidden layer with 4 neurons each and 2 outputs.

1. Define an Artificial Neuron Network (ANN) model as;
-5 input, 2 hidden layer with 4 neurons each and 2 outputs. The weight coefficients will be chosen randomly \([0,1]\).
- For activation functions: linear, threshold, sigmoid nonlinear cases.
First draw the ANN structure and then apply 3 different activation functions for each one. Then curve outputs of the ANN structure.
2. Give 3 practical example for the pseudo-code given below;
Activation functions for each one
function Simple-Problem-SOLVING-AGENT ( percept) returns an action persistent: seq, an action sequence, initially empty state, some description of the current world state goal, a goal, initially null problem, a problem formulation
state \(\leftarrow \) UPDATE-STATE \((\) state, percept)
if \( s e q \) is empty then
goal \(\leftarrow \) FORMULATE-GOAL(state)
problem \(\leftarrow \) FORMULATE-PROBLEMstate, goal)
seq \(\leftarrow \operatorname{SEARCH}(\) problem \()\)
if \( s e q=\) failure then return a null action
action \(\leftarrow \operatorname{FIRST}(s e q)\)
\( s e q \leftarrow \operatorname{REST}(s e q)\)
return action
3. Write 3 different sample programs for pseudocode agent programs for the goal-based and utility-based agents.
1 . Define an Artificial Neuron Network ( ANN )

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!