Class DDPGOptions<T>
Configuration options for DDPG agent.
public class DDPGOptions<T>
Type Parameters
TThe numeric type used for calculations.
- Inheritance
-
DDPGOptions<T>
- Inherited Members
Constructors
DDPGOptions()
public DDPGOptions()
Properties
ActionSize
public int ActionSize { get; set; }
Property Value
ActorHiddenLayers
public List<int> ActorHiddenLayers { get; set; }
Property Value
ActorLearningRate
public T ActorLearningRate { get; set; }
Property Value
- T
BatchSize
public int BatchSize { get; set; }
Property Value
CriticHiddenLayers
public List<int> CriticHiddenLayers { get; set; }
Property Value
CriticLearningRate
public T CriticLearningRate { get; set; }
Property Value
- T
CriticLossFunction
public ILossFunction<T> CriticLossFunction { get; set; }
Property Value
DiscountFactor
public T DiscountFactor { get; set; }
Property Value
- T
ExplorationNoise
public double ExplorationNoise { get; set; }
Property Value
ReplayBufferSize
public int ReplayBufferSize { get; set; }
Property Value
Seed
public int? Seed { get; set; }
Property Value
- int?
StateSize
public int StateSize { get; set; }
Property Value
TargetUpdateTau
public T TargetUpdateTau { get; set; }
Property Value
- T
WarmupSteps
public int WarmupSteps { get; set; }