Class DeterministicPolicyOptions<T>
- Namespace
- AiDotNet.ReinforcementLearning.Policies
- Assembly
- AiDotNet.dll
Configuration options for deterministic policies.
public class DeterministicPolicyOptions<T>
Type Parameters
TThe numeric type used for calculations.
- Inheritance
-
DeterministicPolicyOptions<T>
- Inherited Members
Properties
ActionSize
public int ActionSize { get; set; }
Property Value
ExplorationStrategy
public IExplorationStrategy<T> ExplorationStrategy { get; set; }
Property Value
HiddenLayers
public int[] HiddenLayers { get; set; }
Property Value
- int[]
LossFunction
public ILossFunction<T> LossFunction { get; set; }
Property Value
Seed
public int? Seed { get; set; }
Property Value
- int?
StateSize
public int StateSize { get; set; }
Property Value
UseTanhSquashing
public bool UseTanhSquashing { get; set; }