Steven Brown
Steven Brown
@SoyGema I am running this on Windows with PySC2 installed via pip, I was able to get it working by running the command in the same directory as the simple_agent.py...
Updated with a new article that uses reinforcement learning to build on the previous simple agent: https://medium.com/@skjb/building-a-smart-pysc2-agent-cdc269cb095d
Updated to include my latest tutorial on how to add reinforcement learning to the attack component of an agent: https://medium.com/@skjb/add-smart-attacking-to-your-pysc2-agent-17fd5caad578
Updated to add my latest tutorial that covers how to create an agent that uses sparse rewards and Q Learning: https://medium.com/@skjb/build-a-sparse-reward-pysc2-agent-a44e94ba5255
@SoyGema You do not need to put the agent inside the pysc2 directory, simply any directory in your Python path, then run the command from the same directory
@yeungegs If you have any code corrections, sure. Since this repo is designed for my tutorial set, it might be better for you to create your own repo that matches...
@agent932 I am not sure why `reset()` is being called, however you should be able to add this line to the top of your `init()` method to fix it: `super(SmartAgent,...
It sounds like the issue is that your barracks are being deselected for some reason. You can only train marines when the barracks is selected. I would suggest continuing with...