![]() |
A Categorical DQN Agent based on the DQN Agent.
Inherits From: DqnAgent
, TFAgent
tf_agents.agents.CategoricalDqnAgent(
time_step_spec: tf_agents.trajectories.TimeStep
,
action_spec: tf_agents.typing.types.NestedTensorSpec
,
categorical_q_network: tf_agents.networks.Network
,
optimizer: tf_agents.typing.types.Optimizer
,
observation_and_action_constraint_splitter: Optional[types.Splitter] = None,
min_q_value: tf_agents.typing.types.Float
= -10.0,
max_q_value: tf_agents.typing.types.Float
= 10.0,
epsilon_greedy: Optional[types.FloatOrReturningFloat] = 0.1,
n_step_update: int = 1,
boltzmann_temperature: Optional[types.FloatOrReturningFloat] = None,
target_categorical_q_network: Optional[tf_agents.networks.Network
] = None,
target_update_tau: tf_agents.typing.types.Float
= 1.0,
target_update_period: tf_agents.typing.types.Int
= 1,
td_errors_loss_fn: Optional[tf_agents.typing.types.LossFn
] = None,
gamma: tf_agents.typing.types.Float
= 1.0,
reward_scale_factor: tf_agents.typing.types.Float
= 1.0,
gradient_clipping: Optional[types.Float] = None,
debug_summaries: bool = False,
summarize_grads_and_vars: bool = False,
train_step_counter: Optional[tf.Variable] = None,
name: Optional[Text] = None
)
Used in the notebooks
Used in the tutorials |
---|
Args | |
---|---|
time_step_spec
|
A TimeStep spec of the expected time_steps.
|
action_spec
|
A BoundedTensorSpec representing the actions.
|
categorical_q_network
|
A categorical_q_network.CategoricalQNetwork that returns the q_distribution for each action. |
optimizer
|
The optimizer to use for training. |
observation_and_action_constraint_splitter
|
A function used to process
observations with action constraints. These constraints can indicate,
for example, a mask of valid/invalid actions for a given state of the
environment.
The function takes in a full observation and returns a tuple consisting
of 1) the part of the observation intended as input to the network and
2) the constraint. An example
Note: when using |
min_q_value
|
A float specifying the minimum Q-value, used for setting up the support. |
max_q_value
|
A float specifying the maximum Q-value, used for setting up the support. |
epsilon_greedy
|
probability of choosing a random action in the default epsilon-greedy collect policy (used only if a wrapper is not provided to the collect_policy method). Only one of epsilon_greedy and boltzmann_temperature should be provided. |
n_step_update
|
The number of steps to consider when computing TD error and
TD loss. Defaults to single-step updates. Note that this requires the
user to call train on Trajectory objects with a time dimension of
n_step_update + 1 . However, note that we do not yet support
n_step_update > 1 in the case of RNNs (i.e., non-empty
q_network.state_spec ).
|
boltzmann_temperature
|
Temperature value to use for Boltzmann sampling of the actions during data collection. The closer to 0.0, the higher the probability of choosing the best action. Only one of epsilon_greedy and boltzmann_temperature should be provided. |
target_categorical_q_network
|
(Optional.) A tf_agents.network.Network
to be used as the target network during Q learning. Every
target_update_period train steps, the weights from
categorical_q_network are copied (possibly with smoothing via
target_update_tau ) to target_categorical_q_network .
If Network copying is performed via the In these cases, it is up to you to provide a target Network having
weights that are not shared with the original Note; shallow copies of Keras layers may be built via the code:
|
target_update_tau
|
Factor for soft update of the target networks. |
target_update_period
|
Period for soft update of the target networks. |
td_errors_loss_fn
|
A function for computing the TD errors loss. If None, a default value of huber_loss is used. This function takes as input the target and the estimated Q values and returns the loss for each element of the batch. |
gamma
|
A discount factor for future rewards. |
reward_scale_factor
|
Multiplicative scale for the reward. |
gradient_clipping
|
Norm length to clip gradients. |
debug_summaries
|
A bool to gather debug summaries. |
summarize_grads_and_vars
|
If True, gradient and network variable summaries will be written during training. |
train_step_counter
|
An optional counter to increment every time the train op is run. Defaults to the global_step. |
name
|
The name of this agent. All variables in this module will fall under that name. Defaults to the class name. |
Raises | |
---|---|
TypeError
|
If the action spec contains more than one action. |
TypeError
|
If the q network(s) lack a num_atoms property.
|
Methods
initialize
initialize() -> Optional[tf.Operation]
Initializes the agent.
Returns | |
---|---|
An operation that can be used to initialize the agent. |
Raises | |
---|---|
RuntimeError
|
If the class was not initialized properly (super.__init__
was not called).
|
loss
loss(
experience: tf_agents.typing.types.NestedTensor
,
weights: Optional[types.Tensor] = None,
training: bool = False,
**kwargs
) -> tf_agents.agents.tf_agent.LossInfo
Gets loss from the agent.
If the user calls this from _train, it must be in a tf.GradientTape
scope
in order to apply gradients to trainable variables.
If intermediate gradient steps are needed, _loss and _train will return
different values since _loss only supports updating all gradients at once
after all losses have been calculated.
Args | |
---|---|
experience
|
A batch of experience data in the form of a Trajectory . The
structure of experience must match that of self.training_data_spec .
All tensors in experience must be shaped [batch, time, ...] where
time must be equal to self.train_step_length if that
property is not None .
|
weights
|
(optional). A Tensor , either 0-D or shaped [batch] ,
containing weights to be used when calculating the total train loss.
Weights are typically multiplied elementwise against the per-batch loss,
but the implementation is up to the Agent.
|
training
|
Explicit argument to pass to loss . This typically affects
network computation paths like dropout and batch normalization.
|
**kwargs
|
Any additional data as args to loss .
|
Returns | |
---|---|
A LossInfo loss tuple containing loss and info tensors.
|
Raises | |
---|---|
RuntimeError
|
If the class was not initialized properly (super.__init__
was not called).
|
post_process_policy
post_process_policy() -> tf_agents.policies.TFPolicy
Post process policies after training.
The policies of some agents require expensive post processing after training before they can be used. e.g. A Recommender agent might require rebuilding an index of actions. For such agents, this method will return a post processed version of the policy. The post processing may either update the existing policies in place or create a new policy, depnding on the agent. The default implementation for agents that do not want to override this method is to return agent.policy.
Returns | |
---|---|
The post processed policy. |
preprocess_sequence
preprocess_sequence(
experience: tf_agents.typing.types.NestedTensor
) -> tf_agents.typing.types.NestedTensor
Defines preprocess_sequence function to be fed into replay buffers.
This defines how we preprocess the collected data before training.
Defaults to pass through for most agents.
Structure of experience
must match that of self.collect_data_spec
.
Args | |
---|---|
experience
|
a Trajectory shaped [batch, time, ...] or [time, ...] which
represents the collected experience data.
|
Returns | |
---|---|
A post processed Trajectory with the same shape as the input.
|
train
train(
experience: tf_agents.typing.types.NestedTensor
,
weights: Optional[types.Tensor] = None,
**kwargs
) -> tf_agents.agents.tf_agent.LossInfo
Trains the agent.
Args | |
---|---|
experience
|
A batch of experience data in the form of a Trajectory . The
structure of experience must match that of self.training_data_spec .
All tensors in experience must be shaped [batch, time, ...] where
time must be equal to self.train_step_length if that
property is not None .
|
weights
|
(optional). A Tensor , either 0-D or shaped [batch] ,
containing weights to be used when calculating the total train loss.
Weights are typically multiplied elementwise against the per-batch loss,
but the implementation is up to the Agent.
|
**kwargs
|
Any additional data to pass to the subclass. |
Returns | |
---|---|
A LossInfo loss tuple containing loss and info tensors.
|
Raises | |
---|---|
RuntimeError
|
If the class was not initialized properly (super.__init__
was not called).
|