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
At https://neuralmmo.github.io/build/html/rst/baselines.html the suggest that you could change "scale".
But trying the suggested commandline:
python main.py train --config=baselines.Medium --scale=Baseline --RESTORE=None
You are just getting the error: AssertionError: CLI argument: scale is not a Config property
AssertionError: CLI argument: scale is not a Config property
My guess is that it happens because the order of the commands. If you take a look at https://github.com/NeuralMMO/baselines/blob/main/main.py#L188
Those lines should probably be placed before:
config = attrgetter(config)(base_config)() config.override(**kwargs)
Or else the "scale"-Parameter will be passed directly to the config-class ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
At https://neuralmmo.github.io/build/html/rst/baselines.html the suggest that you could change "scale".
But trying the suggested commandline:
python main.py train --config=baselines.Medium --scale=Baseline --RESTORE=None
You are just getting the error:
AssertionError: CLI argument: scale is not a Config property
My guess is that it happens because the order of the commands.
If you take a look at https://github.com/NeuralMMO/baselines/blob/main/main.py#L188
Those lines should probably be placed before:
Or else the "scale"-Parameter will be passed directly to the config-class ...
The text was updated successfully, but these errors were encountered: