We want to fit a logistic regression model to some data. The model is of the form y = h(x) = 1 / (1 + e^(-o^T * x)), and the error function for m datapoints is given by E(o) = -log(Î m(h(o)(1 - h(o)))). Consider the first training datapoint: x = (2,3) from class y = 0. Perform one iteration of gradient descent with this data point. The initial parameters are o = (-1,-1,0.5) and a = 0.1.
Which answer most closely resembles the updated values of the parameters?
Select one:
a. o = (-1.28,-1.36,0.41)
b. o = (-1.88,-2.06,0.76)
c. o = (-1.05,-1.09,0.41)
d. o = (-0.37,-0.55,0.67)
e. o = (-0.83,-0.79,0.44)
f. o = (-0.95,-0.91,0.57)
g. o = (-0.98,-0.95,0.53)
h. o = (-1.02,-1.04,0.45)