Files
fancy_rl/fancy_rl/projections/identity_projection_layer.py
T
2024-06-02 11:57:19 +02:00

6 lines
201 B
Python

from .base_projection_layer import BaseProjectionLayer
class IdentityProjectionLayer(BaseProjectionLayer):
def project_from_rollouts(self, dist, rollout_data, **kwargs):
return dist, dist