pannous / tensorflow-speech-recognition

🎙Speech recognition using the tensorflow deep learning framework, sequence-to-sequence neural networks
Other
2.17k stars 638 forks source link

problems with tensorboard_util.py #25

Closed anees042 closed 7 years ago

anees042 commented 7 years ago

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")

thanks..