unreal.LearningAgentsNeuralNetwork

class unreal.LearningAgentsNeuralNetwork(outer: Object | None = None, name: Name | str = 'None')

Bases: DataAsset

A neural network data asset.

C++ Source:

  • Plugin: LearningAgents

  • Module: LearningAgents

  • File: LearningAgentsNeuralNetwork.h

Editor Properties: (see get_editor_property/set_editor_property)

  • neural_network_data (LearningNeuralNetworkData): [Read-Only] The internal Neural Network Data

load_network_from_asset(neural_network_asset) None

Copy another asset into this network.

Parameters:

neural_network_asset (LearningAgentsNeuralNetwork) – The asset to load from.

load_network_from_snapshot(file) None

Load this network from a snapshot.

Parameters:

file (FilePath) – The snapshot file.

property neural_network_data: LearningNeuralNetworkData

[Read-Only] The internal Neural Network Data

Type:

(LearningNeuralNetworkData)

save_network_to_asset(neural_network_asset) None

Copy this network into another asset.

Parameters:

neural_network_asset (LearningAgentsNeuralNetwork) – The asset to save to.

save_network_to_snapshot(file) None

Save this network into a snapshot.

Parameters:

file (FilePath) – The snapshot file.