Beispiel #1
0
    def flat_action_dim(self) -> int:
        """

        :return: the dimension(length) of flatten action space
        :rtype: int
        """
        return int(flat_dim(self.action_space))
Beispiel #2
0
    def flat_obs_dim(self) -> int:
        """

        :return: the dimension(length) of flatten observation space
        :rtype: int
        """
        return int(flat_dim(self.obs_space))
Beispiel #3
0
 def flat_action_dim(self) -> int:
     return int(flat_dim(self.action_space))
Beispiel #4
0
 def flat_obs_dim(self) -> int:
     return int(flat_dim(self.obs_space))