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
I have some questions in regard to the critic, maybe from there some improvements arise.
Currently the critic only receives the job embedding and not the machine embedding
Why are you not updating the critic separately, e.g. with the job_v_loss job_v_loss = self.MSE(val[j], rewards_all_env[j])
currently you simply add the critic loss to the actor loss.
The critic is used in both loss functions (job and machine)
The text was updated successfully, but these errors were encountered:
@leikun-starting Thank you very much!
I have some questions in regard to the critic, maybe from there some improvements arise.
job_v_loss = self.MSE(val[j], rewards_all_env[j])
currently you simply add the critic loss to the actor loss.
The text was updated successfully, but these errors were encountered: