Class Reshape
Reshapes an output to a certain shape.
Implements
System.IDisposable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Keras.Layers
Assembly: Keras.dll
Syntax
public class Reshape : BaseLayer, IDisposable
Constructors
| Improve this Doc View SourceReshape(Shape, Shape)
Initializes a new instance of the Reshape class.
Declaration
public Reshape(Shape target_shape, Shape input_shape = null)
Parameters
Type | Name | Description |
---|---|---|
Shape | target_shape | target shape. Tuple of integers. Does not include the batch axis. |
Shape | input_shape | Arbitrary, although all dimensions in the input shaped must be fixed. Use the keyword argument input_shape (tuple of integers, does not include the batch axis) when using this layer as the first layer in a model. |
Implements
System.IDisposable