You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The buffer should be organized as a queue of dictionaries. Each dictionary must hold the variables of one time step.
Each agent has its own buffer_size. If it is requested variables which are older than its buffer_size it will throw an error.
At every step, an agent should organize its full observation as well as its action in the form of a dictionary where each variable is accessible by its name. This dictionary should be inserted into the buffer.
While making an observation, Agent_1 should request Agent_0 for sharing variables by providing a list of variable names and the number of time steps that it wants to observe.
The text was updated successfully, but these errors were encountered:
The following architecture must be implemented:
buffer_size
. If it is requested variables which are older than itsbuffer_size
it will throw an error.Agent_1
should requestAgent_0
for sharing variables by providing a list of variable names and the number of time steps that it wants to observe.The text was updated successfully, but these errors were encountered: