garage.tf.models.sequential module¶
Sequential Model.
A model composed of one or more models which are connected sequential, according to the insertion order.
-
class
Sequential(*models, name=None)[source]¶ Bases:
garage.tf.models.base.ModelSequential Model.
Parameters: - name (str) – Model name, also the variable scope.
- models (list[garage.tf.models.Model]) – The models to be connected in sequential order.
-
input¶ tf.Tensor input of the model by default.
-
inputs¶ tf.Tensor inputs of the model by default.
-
output¶ tf.Tensor output of the model by default.
-
outputs¶ tf.Tensor outputs of the model by default.