-
Notifications
You must be signed in to change notification settings - Fork 0
/
predict.m
executable file
·38 lines (28 loc) · 1.2 KB
/
predict.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
function p = predict(Theta1, Theta2, X)
%PREDICT Predict the label of an input given a trained neural network
% p = PREDICT(Theta1, Theta2, X) outputs the predicted label of X given the
% trained weights of a neural network (Theta1, Theta2)
% Useful values
m = size(X, 1);
num_labels = size(Theta2, 1);
% You need to return the following variables correctly
p = zeros(size(X, 1), 1);
% ====================== YOUR CODE HERE ======================
% Instructions: Complete the following code to make predictions using
% your learned neural network. You should set p to a
% vector containing labels between 1 to num_labels.
%
% Hint: The max function might come in useful. In particular, the max
% function can also return the index of the max element, for more
% information see 'help max'. If your examples are in rows, then, you
% can use max(A, [], 2) to obtain the max for each row.
%
A1=[ones(m,1) X];
Z2=A1*Theta1';
Q2=sigmoid(Z2);
A2=[ones(m,1) Q2];
A3=sigmoid(A2*Theta2');
[high,ihigh]=max(A3,[],2); % used '2' in 3rd argument to find maximum in a row , for column use 1
p=ihigh;
% =========================================================================
end