colorization-pytorch icon indicating copy to clipboard operation
colorization-pytorch copied to clipboard

PyTorch reimplementation of Interactive Deep Colorization

Results 15 colorization-pytorch issues
Sort by recently updated
recently updated
newest added

In you paper , no information for gan ,why in your code have gan? what is the use in your code

The model is a train on ILSVRC2012. Could someone please help me out in clarifying how to train it on my custom dataset?

when running on MAC(python3.5.4),I encountered the following problem:'SIGGRAPHGenerator' object has no attribute 'model' I wonder how to fix it? Traceback (most recent call last): File "test.py", line 40, in model.setup(opt)...

I do not modify any parameters, is there any problem? or i should change some train parameters? Hope you can help me ,thanks!

I cannot find a reference to either the local or global hints networks anywhere in the source code. I've had a look at the definition of the `SIGGRAPHGenerator` class, but...

Im trying to run using CPU only in a VM. I keep getting the following error during the first part of the batch script: `[Network G] Total number of parameters...

I tried to running the test.py but got this error. Any thoughts? ``` Traceback (most recent call last): File "/Users/spikeyuan/PycharmProjects/pythonProject6/colorization-pytorch/test.py", line 61, in model.test(True) # True means that losses will...

The error information is No such file or directory: './dataset/ilsvrc2012/val/1/ILSVRC2012_val_00000059.JPEG',But I can find this image in the directory,Your prompt attention to my question is appreciated,Thanks for your help!!

in utils decode_ind_ab(), the calculations is ``` data_a = data_q/opt.A data_b = data_q - data_a*opt.A data_ab = torch.cat((data_a, data_b), dim=1) ``` however I believe according to how the encoding was...