Created
March 19, 2019 23:15
-
-
Save icoxfog417/f0d01400df94d2a7da9537ae8f4e3de4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def update(self, states, actions, rewards, values): | |
# Calculate values (or advantage) at outside of update process. | |
advantage = reward - values | |
action_probs = self.actor(states) | |
selected_action_probs = action_probs[self.to_one_hot(actions)] | |
neg_logs = - log(selected_action_probs) | |
policy_loss = reduce_mean(neg_logs * advantages) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment