You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
line 4 in the first code block, the objective should be θ + c_1' * x, not θ ? I don't understand the reason not adding c1 * x
line 4 counting from bottom, in the second code block, inside function my_callback(cb_data), model should change to lazy_model ? Is model meant to be the one in iterative method? I don't know the motivation.
After making these 2 changes, I got the reasonable answer below
In Callback method,
θ + c_1' * x
, notθ
? I don't understand the reason not addingc1 * x
model
should change tolazy_model
? Ismodel
meant to be the one in iterative method? I don't know the motivation.After making these 2 changes, I got the reasonable answer below
which is from the complete source code below, please try it
If change 1 is not made, we have
The text was updated successfully, but these errors were encountered: