77ea92f681ad145c755147267d36ec4ba59310c9,rlkit/torch/her/her.py,HER,_get_action_and_info,#HER#,110
Before Change
observation = observation[self.observation_key]
if self.desired_goal_key:
goal = self._rollout_goal[self.desired_goal_key]
new_obs = np.hstack((observation, goal))
return self.exploration_policy.get_action(new_obs)
def get_eval_paths(self):
paths = []
After Change
:return:
self.exploration_policy.set_num_steps_total(self._n_env_steps_total)
new_obs = np.hstack((
observation[self.observation_key],
observation[self.desired_goal_key],
))
return self.exploration_policy.get_action(new_obs)
def get_eval_paths(self):
paths = []
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 5
Instances
Project Name: vitchyr/rlkit
Commit Name: 77ea92f681ad145c755147267d36ec4ba59310c9
Time: 2018-12-04
Author: vitchyr@gmail.com
File Name: rlkit/torch/her/her.py
Class Name: HER
Method Name: _get_action_and_info
Project Name: vitchyr/rlkit
Commit Name: 0030a2dd021c5ae0c67536ab64bbe6bf89c6493e
Time: 2018-11-27
Author: vitchyr@gmail.com
File Name: rlkit/torch/her/her.py
Class Name: HER
Method Name: _get_action_and_info
Project Name: EpistasisLab/tpot
Commit Name: cc42dfa0e2808a96e9022fac7da980fad13d124a
Time: 2019-11-05
Author: weixuanf@pennmedicine.upenn.edu
File Name: tpot/builtins/stacking_estimator.py
Class Name: StackingEstimator
Method Name: transform