Skip to content

Release v0.8 docs #1924

New issue

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

Merged
merged 20 commits into from
Apr 12, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
minor fix
  • Loading branch information
shihzy authored Apr 11, 2019
commit b608741b05826a08a12cebb25af867f0283ca09f
6 changes: 2 additions & 4 deletions docs/Training-ML-Agents.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,9 @@ environment, you can set the following command line options when invoking
[Academy Properties](Learning-Environment-Design-Academy.md#academy-properties).
* `--train` – Specifies whether to train model or only run in inference mode.
When training, **always** use the `--train` option.
* `--num-envs=<n>` - Specifies the number of concurrent, parallel Unity environment instances to collect
* `--num-envs=<n>` - Specifies the number of concurrent Unity environment instances to collect
experiences from when training. Defaults to 1.
* `--base-port` - Specifies the starting port for each concurrent, parallel Unity environment instance. Each instance will use the port `(base_port + worker_id)`, where the `worker_id`
are sequential IDs given to each instance from 0 to `num_envs - 1`.
Default is 5005.
* `--base-port` - Specifies the starting port. Each concurrent Unity environment instance will get assigned a port sequentially, starting from the `base-port`. Each instance will use the port `(base_port + worker_id)`, where the `worker_id` is sequential IDs given to each instance from 0 to `num_envs - 1`. Default is 5005.
* `--docker-target-name=<dt>` – The Docker Volume on which to store curriculum,
executable and model files. See [Using Docker](Using-Docker.md).
* `--no-graphics` - Specify this option to run the Unity executable in
Expand Down