您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
18 行
559 B
18 行
559 B
syntax = "proto3";
|
|
|
|
import "mlagents_envs/communicator_objects/agent_action.proto";
|
|
import "mlagents_envs/communicator_objects/command.proto";
|
|
|
|
option csharp_namespace = "MLAgents.CommunicatorObjects";
|
|
package communicator_objects;
|
|
|
|
message UnityRLInputProto {
|
|
message ListAgentActionProto {
|
|
repeated AgentActionProto value = 1;
|
|
}
|
|
map<string, ListAgentActionProto> agent_actions = 1;
|
|
reserved 2; //deprecated environment proto
|
|
reserved 3; //deprecated is_trainig
|
|
CommandProto command = 4;
|
|
bytes side_channel = 5;
|
|
}
|