unreal.Conv1dObservationParams

class unreal.Conv1dObservationParams(input_length: int = 0, channels: int = 0, out_channels: int = 0, kernel_size: int = 0, padding: int = 0, padding_mode: LearningAgentsPaddingMode = Ellipsis, activation_function: LearningAgentsActivationFunction = Ellipsis)

Bases: StructBase

A wrapper of Conv1d observation parameters

C++ Source:

  • Plugin: LearningAgents

  • Module: LearningAgents

  • File: LearningAgentsObservations.h

Editor Properties: (see get_editor_property/set_editor_property)

  • activation_function (LearningAgentsActivationFunction): [Read-Write] Activation applied after the convolution.

  • channels (int32): [Read-Write] Number of input channels.

  • input_length (int32): [Read-Write] Length of the 1D input.

  • kernel_size (int32): [Read-Write] Size of the convolution kernel.

  • out_channels (int32): [Read-Write] Number of output channels.

  • padding (int32): [Read-Write] Amount of padding to add.

  • padding_mode (LearningAgentsPaddingMode): [Read-Write] The padding mode.

property activation_function: LearningAgentsActivationFunction

[Read-Write] Activation applied after the convolution.

Type:

(LearningAgentsActivationFunction)

property channels: int

[Read-Write] Number of input channels.

Type:

(int32)

property input_length: int

[Read-Write] Length of the 1D input.

Type:

(int32)

property kernel_size: int

[Read-Write] Size of the convolution kernel.

Type:

(int32)

property out_channels: int

[Read-Write] Number of output channels.

Type:

(int32)

property padding: int

[Read-Write] Amount of padding to add.

Type:

(int32)

property padding_mode: LearningAgentsPaddingMode

[Read-Write] The padding mode.

Type:

(LearningAgentsPaddingMode)