alibi.models.pytorch.actor_critic
This module contains the Pytorch implementation of actor-critic networks used in the Counterfactual with Reinforcement Learning for both data modalities. The models' architectures follow the standard actor-critic design and can have broader use-cases.
Actor
ActorInherits from: Module
Actor network. The network follows the standard actor-critic architecture used in Deep Reinforcement Learning. The model is used in Counterfactual with Reinforcement Learning (CFRL) for both data modalities (images and tabular). The hidden dimension used for the all experiments is 256, which is a common choice in most benchmarks.
Constructor
Actor(self, hidden_dim: int, output_dim: int) -> Nonehidden_dim
int
Hidden dimension.
output_dim
int
Output dimension
Methods
forward
forwardforward(x: torch.Tensor) -> torch.Tensorx
torch.Tensor
Input tensor.
Returns
Type:
torch.Tensor
Critic
CriticInherits from: Module
Critic network. The network follows the standard actor-critic architecture used in Deep Reinforcement Learning. The model is used in Counterfactual with Reinforcement Learning (CFRL) for both data modalities (images and tabular). The hidden dimension used for the all experiments is 256, which is a common choice in most benchmarks.
Constructor
Critic(self, hidden_dim: int)hidden_dim
int
Hidden dimension.
Methods
forward
forwardforward(x: torch.Tensor) -> torch.Tensorx
torch.Tensor
Input tensor.
Returns
Type:
torch.Tensor
Last updated
Was this helpful?

