is-凯发k8网页登录
is-done function approximator object for neural network-based environment
since r2022a
description
when creating a neural network-based environment using rlneuralnetworkenvironment
, you can specify the is-done function approximator
using an rlisdonefunction
object. do so when you do not know a ground-truth
termination signal for your environment.
the is-done function approximator object uses a deep neural network as internal approximation model to predict the termination signal for the environment given one of the following input combinations.
observations, actions, and next observations
observations and actions
actions and next observations
next observations
creation
description
creates the is-done function approximator object isdfcnappx
= rlisdonefunction(net
,observationinfo
,actioninfo
,name=value
)isdfcnappx
using the
deep neural network net
and sets the
observationinfo
and actioninfo
properties.
when creating an is-done function approximator you must specify the names of the deep neural network inputs using one of the following combinations of name-value pair arguments.
observationinputnames
,actioninputnames
, andnextobservationinputnames
observationinputnames
andactioninputnames
actioninputnames
andnextobservationinputnames
nextobservationinputnames
you can also specify the usedeterministicpredict
and
usedevice
properties using optional name-value pair arguments. for
example, to use a gpu for prediction, specify usedevice="gpu"
.
input arguments
properties
object functions
rlneuralnetworkenvironment | environment model with deep neural network transition models |
examples
version history
introduced in r2022a