ppo-Pyramids-Training / protobuf-definitions /proto /mlagents_envs /communicator_objects /demonstration_meta.proto
| syntax = "proto3"; | |
| option csharp_namespace = "Unity.MLAgents.CommunicatorObjects"; | |
| package communicator_objects; | |
| message DemonstrationMetaProto { | |
| int32 api_version = 1; | |
| string demonstration_name = 2; | |
| int32 number_steps = 3; | |
| int32 number_episodes = 4; | |
| float mean_reward = 5; | |
| } | |