Andrew Thomas

Results 12 comments of Andrew Thomas

I had the same issue because I ran python3 main.py --corpus opensubs before I downloaded the data as instructed. https://github.com/Conchylicultor/DeepQA/blob/master/data/opensubs/README.md I just deleted the whole project and started over, downloaded...

> you can detect when the `client.events()` generator stops returning messages Any recommendation for how to detect that the generators stops?

Ok thanks for the psuedo-code... that is similar to the code I have. I am interfacing with the nest api... I believe it's maintaining the connection but it stops sending...

Would it make sense to add a feature to close a connection automatically if you don't get a keep alive after a certain period?

Idk, I am considering adding a feature where you have a configurable time out in seconds. If there are no chunks to read in the time out period the events()...

Ok... I have researched it and decided to try to set a read timeout in urllib3 request. Hopefully it will raise a timeout exception and my code will reset the...

Can someone clarify what function is being referred to by Model.save() Is it tf.keras.Model.save()? https://www.tensorflow.org/api_docs/python/tf/keras/Model#save

I see this is a closed issue, but I am python noob, and knowing where the files are doesn't help me. You would think it would search from current directory...

I have the same problem on TensorFlow 1.14.0. When I call ``` from tensorflow import keras model = utils.apply_modifications(model) ``` **ValueError: Unknown initializer: GlorotUniform** I get a different second error......

I suspect the problem is... I am using tensorflow's version of keras `from tensorflow import keras` Whereas... this utils.py in keras-viz is using the keras library directly `from keras.models import...