fminunc
Python の関数 (オクターブ/matlab から) に代わるものはありますか? バイナリ分類器のコスト関数があります。今、勾配降下法を実行して、シータの最小値を取得したいと考えています。オクターブ/matlab の実装は次のようになります。
% Set options for fminunc
options = optimset('GradObj', 'on', 'MaxIter', 400);
% Run fminunc to obtain the optimal theta
% This function will return theta and the cost
[theta, cost] = ...
fminunc(@(t)(costFunction(t, X, y)), initial_theta, options);
numpy ライブラリを使用して Python で costFunction を変換し、numpy で fminunc またはその他の勾配降下アルゴリズムの実装を探しています。