Navigation
API > API/Plugins > API/Plugins/LearningAgentsTraining
The hyperparameters for the flow matching training process.
| Name | FLearningAgentsFlowMatchingHyperparameters |
| Type | struct |
| Header File | /Engine/Plugins/Experimental/LearningAgents/Source/LearningAgentsTraining/Public/LearningAgentsFlowMatchingTrainer.h |
| Include Path | #include "LearningAgentsFlowMatchingTrainer.h" |
Syntax
USTRUCT (BlueprintType , Category="LearningAgents")
struct FLearningAgentsFlowMatchingHyperparameters
Variables
Public
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| BatchSize | uint32 | Batch size to use for training. | LearningAgentsFlowMatchingTrainer.h |
|
| bNormalizeLatents | bool | Whether to perform latent normalization. | LearningAgentsFlowMatchingTrainer.h |
|
| LearningRate | float | Learning rate of the Denoiser network. Typical values are between 0.001 and 0.0001. | LearningAgentsFlowMatchingTrainer.h |
|
| NumberOfIterations | int32 | The number of iterations to run before ending training. | LearningAgentsFlowMatchingTrainer.h |
|
| ObservationNoiseScale | float | A multiplicative scaling factor that controls the observation noise that increases the perturbations added to observations. | LearningAgentsFlowMatchingTrainer.h |
|
| RandomSeed | int32 | The seed used for any random sampling the trainer will perform, e.g. for weight initialization. | LearningAgentsFlowMatchingTrainer.h |
|
| WeightDecay | float | Amount of weight decay to apply to the network. | LearningAgentsFlowMatchingTrainer.h |
|