forward_train# RLModule.forward_train(batch: Dict[str, Any], **kwargs) → Dict[str, Any][source]# DO NOT OVERRIDE! Forward-pass during training called from the learner. This method should not be overridden. Override the self._forward_train() method instead. Parameters: batch (Dict[str, Any]) – The input batch. **kwargs – Additional keyword arguments. Returns: The output of the forward pass. Return type: Dict[str, Any]