Soumya Tripathy
Soumya Tripathy
In this line: **File "/home/xirui/XIr/GANimation-master/utils/tb_visualizer.py", line 27, in display_current_results self._writer.add_image(sum_name, image_numpy, it)self._writer.add_image(sum_name, image_numpy, it)** I changed the image_numpy in to tensor and normalized it between 0 to 1 which solved...
Not only covert it to tensor but convert to actual format (CXWXH) as follows: I=torch.from_numpy(image_numpy).permute(2,0,1) self._writer.add_image(sum_name, I/255, it)
Any updates on it? One year has passed and not able to find any other discussion on it.
Okay I have faced the similar problem and the cause of the problem is lsp-file-watcher. You can reduce the startup time by simply putting `(setq lsp-enable-file-watchers 'nil)` in your config...
Hi, I am not sure when I can upload the training script because could not get time to clean it and post it. It is kind of a code dump....
I think the input crop is not right. can you post the original image?
  Hi, after adjusting the crop the results are quite okay considering the fact that the test data is very different from the training set (Voxceleb). Try to use...
Hi, I think you are facing this problem [Replace async with non_blocking for Python 3.7](https://github.com/pytorch/pytorch/pull/4999) Thanks
Hi, Are you using this code on Windows? Then probably you are facing this problem [Multiprocessing error without if-clause protection](https://pytorch.org/docs/stable/notes/windows.html#multiprocessing-error-without-if-clause-protection). I have pushed a possible fix into the repo. I...
Hi, It's not available yet in the current version. I just used the matplotlib to create that UI for manual editing. I will make it available as soon as possible...