在python中,除了fminunc函数(来自octave/matlab)之外,还有其他替代方法吗?我有一个二元分类器的成本函数。现在我要运行梯度下降,得到θ的最小值。% Set options for fminunc
% Run fminunc to obtainfminunc(@(t)(costFunction(t, X, y)), ini
我在MATLAB中有以下代码:options = optimset('GradObj', 'on', 'MaxIter', 400);
% This function will return theta and the cost
[theta, cost] =fminunc(@(t)(costFunction(t, X, y)), ini