scope_rl.ope.weight_value_learning.function.VFunction#

class scope_rl.ope.weight_value_learning.function.VFunction(state_dim, hidden_dim=100)[source]#

Value Function (for both discrete and continuous action space).

Bases: torch.nn.Module

Imported as: scope_rl.ope.weight_value_learning.function.VFunction

Parameters:
  • state_dim (int (> 0)) – Dimensions of the state space.

  • hidden_dim (int, default=100 (> 0)) – Hidden dimension of the network.

Methods