Skip to content

🧪 LSTMLayer

A long short-term memory (LSTM) layer.

Parent type: Layer

Parameters:

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

@Experimental
class LSTMLayer(
    @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