Navigation
API > API/Plugins > API/Plugins/LearningAgents
A wrapper of Conv2d observation parameters
| Name | FConv2dObservationParams |
| Type | struct |
| Header File | /Engine/Plugins/Experimental/LearningAgents/Source/LearningAgents/Public/LearningAgentsObservations.h |
| Include Path | #include "LearningAgentsObservations.h" |
Syntax
USTRUCT (BlueprintType )
struct FConv2dObservationParams
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| LearningAgentsObservations.h | |||
FConv2dObservationParams
(
int32 InInputHeight, |
LearningAgentsObservations.h |
Variables
Public
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| ActivationFunction | ELearningAgentsActivationFunction | Activation applied after the convolution. | LearningAgentsObservations.h |
|
| InChannels | int32 | Number of input channels. | LearningAgentsObservations.h |
|
| InputHeight | int32 | Height of the 2D input. | LearningAgentsObservations.h |
|
| InputWidth | int32 | Width of the 2D input. | LearningAgentsObservations.h |
|
| KernelSize | int32 | Size of the convolution kernel. (3 -> (3x3), 5 -> (5x5) etc) | LearningAgentsObservations.h |
|
| OutChannels | int32 | Number of output channels. | LearningAgentsObservations.h |
|
| Padding | int32 | Amount of zero‑padding on each side. | LearningAgentsObservations.h |
|
| Stride | int32 | Stride of the convolution. | LearningAgentsObservations.h |
|