Update
This commit is contained in:
parent
9cecaeb9d6
commit
4d29fffba1
4 changed files with 126 additions and 67 deletions
|
@ -1,9 +1,13 @@
|
|||
# gobalVars.py
|
||||
|
||||
import json
|
||||
import os
|
||||
|
||||
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '1'
|
||||
|
||||
import tensorflow as tf
|
||||
import log
|
||||
import platform
|
||||
import os
|
||||
|
||||
LOGGER = log.Logger(level="TRACE", logfile="training.log", reset_logfile=True)
|
||||
|
||||
|
@ -13,6 +17,7 @@ NUM_COLOUR_CHANNELS = 3
|
|||
WIDTH = 640
|
||||
HEIGHT = 360
|
||||
MAX_FRAMES = 0
|
||||
DATATYPE = tf.float16
|
||||
|
||||
def clear_screen():
|
||||
system_name = platform.system()
|
||||
|
|
Reference in a new issue