File size: 1,019 Bytes
05c9ac2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
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;
}
|