Pragyan Subedi

Results 4 comments of Pragyan Subedi

Writing tf.reset_default_graph() before training and saving could have made the checkpoint restorable @coderzjw @caolusg

Please write all tf.concat as follows: z_concat = tf.concat(axis=1, values=[t_z, reduced_text_embedding]) instead of z_concat = tf.concat(1, t_z, reduced_text_embedding) The parameter placement has changed hence specifying the parameters will help. @remyavijeesh22...

Any updates on this issue for implementation? @sebp @konradsemsch

@Narak7 change the following line in run.py: dataset = TextDataset(datadir, 64) to dataset = TextDataset(datadir, 512) You can see the mapping in preprocess/dataset.py. While passing the data through run.py make...