1775e89f262111791fabfd40f80a24f74738fe54,rllib/policy/policy.py,,clip_action,#Any#Any#,388

Before Change


        Clipped batch of actions.
    

    if isinstance(space, gym.spaces.Box):
        return np.clip(action, space.low, space.high)
    elif isinstance(space, gym.spaces.Tuple):
        if type(action) not in (tuple, list):
            raise ValueError("Expected tuple space for actions {}: {}".format(
                action, space))
        out = []
        for a, s in zip(action, space.spaces):
            out.append(clip_action(a, s))
        return out
    else:
        return action

After Change


            a = np.clip(a, s.low, s.high)
        return a

    return tree.map_structure(map_, action, action_space)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 10

Instances


Project Name: ray-project/ray
Commit Name: 1775e89f262111791fabfd40f80a24f74738fe54
Time: 2020-04-28
Author: sven@anyscale.io
File Name: rllib/policy/policy.py
Class Name:
Method Name: clip_action


Project Name: keras-team/autokeras
Commit Name: 19feb08bf8b7c9ab8b2cf2c4d5ec74541b84b103
Time: 2017-12-15
Author: jhfjhfj1@gmail.com
File Name: autokeras/generator.py
Class Name: RandomConvClassifierGenerator
Method Name: _get_shape


Project Name: keras-team/autokeras
Commit Name: 19feb08bf8b7c9ab8b2cf2c4d5ec74541b84b103
Time: 2017-12-15
Author: jhfjhfj1@gmail.com
File Name: autokeras/generator.py
Class Name: RandomConvClassifierGenerator
Method Name: _get_pool_layer_func