View source on GitHub
|
A Double DQN Agent.
Inherits From: DqnAgent, TFAgent
tf_agents.agents.dqn.dqn_agent.DdqnAgent(
time_step_spec: tf_agents.trajectories.TimeStep,
action_spec: tf_agents.typing.types.NestedTensorSpec,
q_network: tf_agents.networks.Network,
optimizer: tf_agents.typing.types.Optimizer,
observation_and_action_constraint_splitter: Optional[types.Splitter] = None,
epsilon_greedy: Optional[types.FloatOrReturningFloat] = 0.1,
n_step_update: int = 1,
boltzmann_temperature: Optional[types.FloatOrReturningFloat] = None,
emit_log_probability: bool = False,
target_q_network: Optional[tf_agents.networks.Network] = None,
target_update_tau: tf_agents.typing.types.Float = 1.0,
target_update_period: 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,
training_data_spec: Optional[tf_agents.typing.types.DistributionSpecV2] = None,
name: Optional[Text] = None
)
Implements the Double-DQN algorithm from
"Deep Reinforcement Learning with Double Q-learning" Hasselt et al., 2015 https://arxiv.org/abs/1509.06461
Args |
|---|
time_step_spec
TimeStep spec of the expected time_steps.
action_spec
q_network
tf_agents.network.Network to be used by the agent. The
network will be called with call(observation, step_type) and should
emit logits over the action space.
optimizer
observation_and_action_constraint_splitter
observation_and_action_constraint_splitter could be as simple as: def observation_and_action_constraint_splitter(observation): return
observation['network_input'], observation['constraint'] Note: when
using observation_and_action_constraint_splitter, make sure the
provided q_network is compatible with the network-specific half of the
output of the observation_and_action_constraint_splitter. In
particular, observation_and_action_constraint_splitter will be called
on the observation before passing to the network. If
observation_and_action_constraint_splitter is None, action constraints
are not applied.
epsilon_greedy
n_step_update
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
emit_log_probability
target_q_network
tf_agents.network.Network to be used as
the target network during Q learning. Every target_update_period
train steps, the weights from q_network are copied (possibly with
smoothing via target_update_tau) to target_q_network. If
target_q_network is not provided, it is created by making a copy of
q_network, which initializes a new network with the same structure and
its own layers and weights. Network copying is performed via the
Network.copy superclass method, and may inadvertently lead to the
resulting network to share weights with the original. This can happen
if, for example, the original network accepted a pre-built Keras layer
in its __init__, or accepted a Keras layer that wasn't built, but
neglected to create a new copy. In these cases, it is up to you to
provide a target Network having weights that are not shared with the
original q_network. If you provide a target_q_network that shares
any weights with q_network, a warning will be logged but no exception
is thrown. Note; shallow copies of Keras layers may be built via the
code python new_layer =
type(layer).from_config(layer.get_config())
target_update_tau
target_update_period
td_errors_loss_fn
gamma
reward_scale_factor
gradient_clipping
debug_summaries
summarize_grads_and_vars
train_step_counter
training_data_spec
name
Raises |
|---|
ValueError
action_spec contains more than one action or action
spec minimum is not equal to 0.
ValueError
action_spec.
NotImplementedError
q_network has non-empty state_spec (i.e., an
RNN is provided) and n_step_update > 1.
Attributes |
|---|
action_spec
collect_data_context
collect_data_spec
Trajectory spec, as expected by the collect_policy.
collect_policy
data_context
debug_summaries
policy
summaries_enabled
summarize_grads_and_vars
time_step_spec
TimeStep tensors expected by the agent.
train_sequence_length
train.Train requires experience to be a Trajectory containing tensors shaped
[B, T, ...]. This argument describes the value of T required.
For example, for non-RNN DQN training, T=2 because DQN requires single
transitions.
If this value is None, then train can handle an unknown T (it can be
determined at runtime from the data). Most RNN-based agents fall into
this category.
train_step_counter
training_data_spec
Methods
initialize
initialize() -> Optional[tf.Operation]
Initializes the agent.
| Returns | |
|---|---|
| An operation that can be used to initialize the agent. |
| Raises |
|---|
RuntimeError
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
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
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
loss. This typically affects
network computation paths like dropout and batch normalization.
**kwargs
loss.
| Returns | |
|---|---|
A LossInfo loss tuple containing loss and info tensors.
|
| Raises |
|---|
RuntimeError
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
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
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
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
| Returns | |
|---|---|
A LossInfo loss tuple containing loss and info tensors. |
- In eager mode, the loss values are first calculated, then a train step is performed before they are returned.
- In graph mode, executing any or all of the loss tensors
will first calculate the loss value(s), then perform a train step,
and return the pre-train-step
LossInfo.
| Raises |
|---|
RuntimeError
super.__init__
was not called).
View source on GitHub