tensorboard_util.py will not run on windows; i made the following changes to make it work.
in layer/__init__.py:
changed "from tensorboard_util import *" to "from .tensorboard_util import *"tensorboard_logs = '/tmp/tensorboard_logs/'
needs to be updated for windows, i just changed it to tensorboard_logs = './tmp/tensorboard_logs/'
logs=subprocess.check_output(["ls", tensorboard_logs]).split("\n")
to
logs=subprocess.check_output(["ls", tensorboard_logs]).decode("utf-8").split("\n")
tensorboard_util.py will not run on windows; i made the following changes to make it work.
in
layer/__init__.py
: changed"from tensorboard_util import *"
to"from .tensorboard_util import *"
tensorboard_logs = '/tmp/tensorboard_logs/'
needs to be updated for windows, i just changed it totensorboard_logs = './tmp/tensorboard_logs/'
logs=subprocess.check_output(["ls", tensorboard_logs]).split("\n")
tologs=subprocess.check_output(["ls", tensorboard_logs]).decode("utf-8").split("\n")
thanks..