We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running from the cli with either of;
luxai_s2 player/main.py player/main.py --out=replay.json --replay.compressed_obs=False luxai_s2 player/main.py player/main.py --out=replay.json --replay.compressed_obs
doesnt seem to work.
i fixed locally by adding action='store_false' to parser.add_argument("--replay.compressed_obs", ... (line 24 of cli.py)
action='store_false'
parser.add_argument("--replay.compressed_obs", ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Running from the cli with either of;
doesnt seem to work.
i fixed locally by adding
action='store_false'
toparser.add_argument("--replay.compressed_obs", ...
(line 24 of cli.py)
The text was updated successfully, but these errors were encountered: