zwep

Results 4 comments of zwep

I face a similar issue, but then while using tf.GraphKeys.MODEL_VARIABLES for placeholders. An example to see this is here ``` class CollectionsGraphCreator: """ A graph object with multiple nodes that...

I have found on another Issues page the following work around setattr(tf.contrib.rnn.GRUCell, '__deepcopy__', lambda self, _: self) setattr(tf.contrib.rnn.BasicLSTMCell, '__deepcopy__', lambda self, _: self) setattr(tf.contrib.rnn.MultiRNNCell, '__deepcopy__', lambda self, _: self) (See...

Just a quick question.. the first answer said "he problem essentially boils down to the fact that the only way to get a result back from TensorFlow is to call...