privateboss commited on
Commit
a8fd385
·
verified ·
1 Parent(s): 9eec8c9

Update utils.py

Browse files
Files changed (1) hide show
  1. utils.py +0 -1
utils.py CHANGED
@@ -3,7 +3,6 @@ import numpy as np
3
  def compute_gae(next_value, rewards, masks, values, gamma, lam):
4
  """
5
  Computes Generalized Advantage Estimation (GAE) and Returns.
6
- This logic smears the 'success' of a drop-off back through the 11 parallel streams.
7
  """
8
  values = values + [next_value]
9
  gae = 0
 
3
  def compute_gae(next_value, rewards, masks, values, gamma, lam):
4
  """
5
  Computes Generalized Advantage Estimation (GAE) and Returns.
 
6
  """
7
  values = values + [next_value]
8
  gae = 0