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
First, if I run python -m reaver.run --env MoveToBeacon --agent a2c --n_envs 4 2> stderr.log I get UnimplementedError (see above for traceback): Generic conv implementation only supports NHWC tensor format for now. So I changed line67 in run.py into if not int(args.gpu)
And after that, this problem seems to be solved, but I got another Problem whenever the game loading is done:ValueError: Argument is out of range for 12/Attack_screen (3/queued [2]; 0/screen [0, 0]), got: [[1], [8, 40]] The Argument that is out of range is not the same each time. So is there something I overlooked? Thx
The text was updated successfully, but these errors were encountered:
I tried to maintain CPU version for awhile but it gets really annoying keeping up with transpositions. The issue boils down to that I use NCHW format for GPU but as you can see from error only NHWC is supported on CPU. To fix it you'd need to transpose data before inputting and set data_format = channels_last in the model.
inoryy
changed the title
It seems to have some problem running on macOS?
Issue running StarCraft II agent on CPU only setup
Jan 29, 2019
First, if I run
python -m reaver.run --env MoveToBeacon --agent a2c --n_envs 4 2> stderr.log
I getUnimplementedError (see above for traceback): Generic conv implementation only supports NHWC tensor format for now.
So I changed line67 in run.py intoif not int(args.gpu)
And after that, this problem seems to be solved, but I got another Problem whenever the game loading is done:
ValueError: Argument is out of range for 12/Attack_screen (3/queued [2]; 0/screen [0, 0]), got: [[1], [8, 40]]
The Argument that is out of range is not the same each time. So is there something I overlooked? ThxThe text was updated successfully, but these errors were encountered: