Skip to content
This repository was archived by the owner on Jul 7, 2023. It is now read-only.

Commit eb5d4cb

Browse files
committed
model_builder: fix log message for diet variables
1 parent 4ffae90 commit eb5d4cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tensor2tensor/utils/model_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ def nth_model(n):
288288
diet_vars = [
289289
v for v in tf.global_variables() if v.dtype == dtypes.float16_ref
290290
]
291-
_log_variable_sizes(diet_vars, "Diet Varaibles")
291+
_log_variable_sizes(diet_vars, "Diet Variables")
292292

293293
# Optimize
294294
total_loss = tf.identity(total_loss, name="total_loss")

0 commit comments

Comments
 (0)