Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| import numpy as np | |
| import os | |
| import pandas as pd | |
| import sys | |
| import uuid | |
| import sys | |
| import tensorflow as tf | |
| config = tf.ConfigProto() | |
| config.gpu_options.allow_growth = True |