Skip to content

GRULayer

A gated recurrent unit (GRU) layer.

Parent type: Layer

Parameters:

Name Type Description Default
neuronCount Int The number of neurons in this layer -
Stub code in GRULayer.sdsstub

@Category(DataScienceCategory.ModelingQNeuralNetwork)
class GRULayer(
   @PythonName("neuron_count") neuronCount: Int
) sub Layer {
   /**
    * Get the input_size of this layer.
    */
   @PythonName("input_size") attr inputSize: Int
   /**
    * Get the output_size of this layer.
    */
   @PythonName("output_size") attr outputSize: Int
}

inputSize

Get the input_size of this layer.

Type: Int

outputSize

Get the output_size of this layer.

Type: Int