così dato che la funzione sigmoide è definita come hθ (x) = g (θ ^ (T) x), come posso implementare questa funzione in Octave dato che g = zeri (size (z))?
così dato che la funzione sigmoide è definita come hθ (x) = g (θ ^ (T) x), come posso implementare questa funzione in Octave dato che g = zeri (size (z))?
Risposte:
Questo calcolerà il sigmoide di uno scalare, un vettore o una matrice.
function g = sigmoid(z)
% SIGMOID Compute sigmoid function
% g = SIGMOID(z) computes the sigmoid of z.
% Compute the sigmoid of each value of z (z can be a matrix,
% vector or scalar).
SIGMOID = @(z) 1./(1 + exp(-z));
g = SIGMOID(z);
end
g = 1 ./ (1 + exp(-z));
invece di crearlo SIGMOID
all'interno della sigmoid
funzione.