diff --git a/ENVIRONMENT_VARIABLES.md b/ENVIRONMENT_VARIABLES.md index 17b8970f..dc7fd3c3 100644 --- a/ENVIRONMENT_VARIABLES.md +++ b/ENVIRONMENT_VARIABLES.md @@ -104,7 +104,7 @@ Contains a JSON-encoded dictionary with the user-provided hyperparameters. import os import json -hyperparameters = json.loads(os.environ['SM_HPS'])) +hyperparameters = json.loads(os.environ['SM_HPS']) # {"batch-size": 256, "learning-rate": 0.0001, "communicator": "pure_nccl"} ```