Amin Babadi
Amin Babadi
I changed update_every value from 25 to 30 to resolve this warning: `Number of agents should divide episodes per update.` But still it doesn't seem to be working. Weird thing...
Update: When I change `env_processes` to False, it seems to be working! But I guess it disables all the parallelism that this framework is presenting, right?
I worked on that and it seems there's some other problem with the code: Now it's showing this error: ``` Traceback (most recent call last): File "E:/agents/agents/scripts/train.py", line 165, in...
OK I got an update: In train.py, I changed this line: ``` batch_env = utility.define_batch_env(lambda: _create_environment(config), config.num_agents, env_processes) ``` into this: ``` batch_env = utility.define_batch_env(_create_environment(config), config.num_agents, env_processes) ``` Not it...
I thought that we give `env` as one of the main arguments in command prompt. So how should I create the environments? You mean I should change the default code...
Oh OK I found out what I did wrong with removing the lambda keyword. But how can I solve this using external or nested functions? I did a lot of...
Thanks for your reply. I tried both tests with success. I cloned the repository again and the code doesn't work. It's not showing me that lambda error but it stays...
OK thanks for your reply. I have no idea right now. But I will work on it because it's kind of important for me to make it work on Windows....
@danijar No I couldn't solve it so I had to switch to linux. Sorry.
Hi. I'm trying to run the code on a cluter computer but it's showing these messages and it doesn't work: ' == Status == Using FIFO scheduling algorithm. Resources requested:...