Skip to content
This repository was archived by the owner on Oct 4, 2024. It is now read-only.

Commit ff27449

Browse files
committed
additional logging statements
1 parent c0b35aa commit ff27449

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tf-2-workflow/train_model/train.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ def get_test_data(test_dir):
4949

5050
args, _ = parse_args()
5151

52+
print('Training data location: {}'.format(args.train))
53+
print('Test data location: {}'.format(args.test))
5254
x_train, y_train = get_train_data(args.train)
5355
x_test, y_test = get_test_data(args.test)
5456

@@ -74,4 +76,3 @@ def get_test_data(test_dir):
7476
# save model
7577
model.save(args.model_dir + '/1')
7678

77-

0 commit comments

Comments
 (0)