-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
Release v0.8 docs #1924
Conversation
…Using-Concurrent-Unity-Instances.md
docs/Migrating.md
Outdated
* If you intend to make modifications to `ml-agents` or `ml-agents-envs` please check the Installing for Development in the [Installation documentation](Installation.md). | ||
|
||
#### Steps to Migrate | ||
* Make sure to remove the `ENABLE_TENSORFLOW` flag in your Unity project settings |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't need this in from v0.7 to v0.8.
Looks good to me aside from the comments. Remove that then merge. |
docs/Training-ML-Agents.md
Outdated
@@ -134,12 +134,11 @@ 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` - Specifies the number of parallel environments to collect | |||
* `--num-envs=<n>` - Specifies the number of concurrent, parallel Unity environment instances to collect |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Concurrent and parallel are saying the same thing here.
docs/Training-ML-Agents.md
Outdated
environment will use the port `(base_port + worker_id)`, where the worker ID | ||
are sequential IDs given to each environment from 0 to `num_envs - 1`. | ||
Defaults to 5005. | ||
* `--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` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a bit confusing: "the starting port for each concurrent, parallel Unity environment instance". This is the starting port from which all other ports are given sequential port numbers. Not the starting port for each.
Couple of comments, but no show stoppers |
@unityjeffrey Can I squash and merge this? |
* update title caps * Rename Custom-Protos.md to Creating-Custom-Protobuf-Messages.md * Updated with custom protobuf messages * Cleanup against to our doc guidelines * Minor text revision * Create Training-Concurrent-Unity-Instances * Rename Training-Concurrent-Unity-Instances to Training-Concurrent-Unity-Instances.md * update to right format for --num-envs * added link to concurrent unity instances * Update and rename Training-Concurrent-Unity-Instances.md to Training-Using-Concurrent-Unity-Instances.md * Added considerations section * Update Training-Using-Concurrent-Unity-Instances.md * cleaned up language to match doc * minor updates * retroactive migration from 0.6 to 0.7 * Updated from 0.7 to 0.8 migration * Minor typo * minor fix * accidentally duplicated step * updated with new features list
Doc review.