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
{{ message }}
This repository has been archived by the owner on Sep 2, 2024. It is now read-only.
On line 2, the "heads" parameters are updated through theta_t = theta_t - eta * grad, but here you do theta_t = theta_t * scale_t * eta * grad
is that correct ?
best
antoine
The text was updated successfully, but these errors were encountered:
Hi, thanks for providing code for your paper
I was wondering, when you do the actual update there:
MultiObjectiveOptimization/multi_task/train_multi_task.py
Line 184 in d45eb26
It looks to me that you are not exactly performing the same thing as what's stated in the paper
https://proceedings.neurips.cc/paper/2018/file/432aca3a1e345e339f35a30c8f65edce-Paper.pdf
On line 2, the "heads" parameters are updated through
theta_t = theta_t - eta * grad
, but here you dotheta_t = theta_t * scale_t * eta * grad
is that correct ?
best
antoine
The text was updated successfully, but these errors were encountered: