Unity 机器学习代理工具包 (ML-Agents) 是一个开源项目,它使游戏和模拟能够作为训练智能代理的环境。
您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

17 行
620 B

syntax = "proto3";
import "mlagents_envs/communicator_objects/space_type.proto";
option csharp_namespace = "Unity.MLAgents.CommunicatorObjects";
package communicator_objects;
message BrainParametersProto {
reserved 1; // deprecated int32 vector_observation_size = 1;
reserved 2; // deprecated int32 num_stacked_vector_observations = 2;
repeated int32 vector_action_size = 3;
reserved 4; // deprecated repeated ResolutionProto camera_resolutions
repeated string vector_action_descriptions = 5;
SpaceTypeProto vector_action_space_type = 6;
string brain_name = 7;
bool is_training = 8;
}