ppo-Pyramids-Training / protobuf-definitions /proto /mlagents_envs /communicator_objects /brain_parameters.proto
| syntax = "proto3"; | |
| import "mlagents_envs/communicator_objects/space_type.proto"; | |
| option csharp_namespace = "Unity.MLAgents.CommunicatorObjects"; | |
| package communicator_objects; | |
| message ActionSpecProto { | |
| int32 num_continuous_actions = 1; | |
| int32 num_discrete_actions = 2; | |
| repeated int32 discrete_branch_sizes = 3; | |
| repeated string action_descriptions = 4; | |
| } | |
| message BrainParametersProto { | |
| reserved 1; // deprecated int32 vector_observation_size = 1; | |
| reserved 2; // deprecated int32 num_stacked_vector_observations = 2; | |
| repeated int32 vector_action_size_deprecated = 3; // mark as deprecated in communicator v1.3.0 | |
| reserved 4; // deprecated repeated ResolutionProto camera_resolutions | |
| repeated string vector_action_descriptions_deprecated = 5; // mark as deprecated in communicator v1.3.0 | |
| SpaceTypeProto vector_action_space_type_deprecated = 6; // mark as deprecated in communicator v1.3.0 | |
| string brain_name = 7; | |
| bool is_training = 8; | |
| ActionSpecProto action_spec = 9; | |
| } | |