Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| import functools | |
| import numpy as np | |
| import tensorflow.compat.v1 as tf | |
| from tensorflow.python.tpu import tpu_function | |
| BATCH_NORM_DECAY = 0.9 | |
| BATCH_NORM_EPSILON = 1e-5 | |