Skip to content

Commit d66cdba

Browse files
authored
Fix undefined variable reference
`args.tensorflow_version_tag` is typo, and it causes runtime error. `tensorflow_version_tag` is intended variable name, isn't it?
1 parent 6283c40 commit d66cdba

File tree

1 file changed

+1
-1
lines changed
  • hyperparameter_tuning/keras_bring_your_own

1 file changed

+1
-1
lines changed

hyperparameter_tuning/keras_bring_your_own/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def upload_training_data():
8080

8181
tensorflow_version_tag = get_tensorflow_version_tag(args.tf_version, args.instance_type)
8282

83-
image_name = get_image_name(args.ecr_repository, args.tensorflow_version_tag)
83+
image_name = get_image_name(args.ecr_repository, tensorflow_version_tag)
8484

8585
build_image(image_name, tensorflow_version_tag)
8686

0 commit comments

Comments
 (0)