diff --git a/com.unity.ml-agents/CHANGELOG.md b/com.unity.ml-agents/CHANGELOG.md index 4122709607..dbc0bb903a 100755 --- a/com.unity.ml-agents/CHANGELOG.md +++ b/com.unity.ml-agents/CHANGELOG.md @@ -68,7 +68,7 @@ or actuators on your system. (#5194) #### ml-agents / ml-agents-envs / gym-unity (Python) - The `--resume` flag now supports resuming experiments with additional reward providers or loading partial models if the network architecture has changed. See - [here](https://github.com/Unity-Technologies/ml-agents/blob/release-16_docs/docs/Training-ML-Agents.md#loading-an-existing-model) + [here](https://github.com/Unity-Technologies/ml-agents/blob/release_16_docs/docs/Training-ML-Agents.md#loading-an-existing-model) for more details. (#5213) ### Bug Fixes diff --git a/utils/run_markdown_link_check.py b/utils/run_markdown_link_check.py index 5819666baf..8f45491c22 100755 --- a/utils/run_markdown_link_check.py +++ b/utils/run_markdown_link_check.py @@ -19,5 +19,5 @@ ) for f in args.files: - subprocess_args = ["markdown-link-check", "-c", config_file, f] + subprocess_args = ["markdown-link-check", "-q", "-c", config_file, f] subprocess.check_call(subprocess_args)