浏览代码

Ticked the communication version to API-6

/develop-generalizationTraining-TrainerController
vincentpierre 6 年前
当前提交
a9b5ad37
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 2
      UnitySDK/Assets/ML-Agents/Scripts/Academy.cs
  2. 2
      ml-agents/mlagents/envs/environment.py

2
UnitySDK/Assets/ML-Agents/Scripts/Academy.cs


[SerializeField]
public BroadcastHub broadcastHub = new BroadcastHub();
private const string kApiVersion = "API-5";
private const string kApiVersion = "API-6";
// Fields provided in the Inspector

2
ml-agents/mlagents/envs/environment.py


atexit.register(self._close)
self.port = base_port + worker_id
self._buffer_size = 12000
self._version_ = "API-5"
self._version_ = "API-6"
self._loaded = False # If true, this means the environment was successfully loaded
self.proc1 = None # The process that is started. If None, no process was started
self.communicator = self.get_communicator(worker_id, base_port)

正在加载...
取消
保存