Code Monkey home page Code Monkey logo

Comments (6)

Zhaoyi-Yan avatar Zhaoyi-Yan commented on September 13, 2024

Hi ThJOD,
In fact, the unet can handle images with arbitrary sizes. However, the best practice is that you need to train the model by feeding different sizes of images, otherwise, using a pretrained model you will not get good results. Here is some tips on how to load the images without crop and resizing: change the code https://github.com/Zhaoyi-Yan/Shift-Net_pytorch/blob/master/data/aligned_dataset.py#L33-L64

       # delete the random cropping and resizing code above
        if (not self.opt.no_flip) and random.random() < 0.5:
            idx = [i for i in range(A.size(2) - 1, -1, -1)] # size(2)-1, size(2)-2, ... , 0
            idx = torch.LongTensor(idx)
            A = A.index_select(2, idx)

        # let B directly equals A
        B = A.clone()

        # Just zero the mask is fine if not offline_loading_mask.
        mask = A.clone().zero_()
        if self.opt.offline_loading_mask:
            mask = Image.open(self.mask_paths[random.randint(0, len(self.mask_paths)-1)])
     #       mask = mask.resize((self.opt.fineSize, self.opt.fineSize), Image.NEAREST)
            mask = transforms.ToTensor()(mask)

from shift-net_pytorch.

ThJOD avatar ThJOD commented on September 13, 2024

Hey,

thank you very much! Inference worked like a charm with the proposed changes. Training had trouble with odd dimensions e.g. Image of size (1028,539,3) so I opted for resizing them to the closest lower power of 2 for now.

Best regards
ThJOD

from shift-net_pytorch.

Zhaoyi-Yan avatar Zhaoyi-Yan commented on September 13, 2024

No need the closest lower power of 2, you only need to promise that the h and w should be odd number, and not less than 256. Then it will work.

from shift-net_pytorch.

Zhaoyi-Yan avatar Zhaoyi-Yan commented on September 13, 2024

Besides, when train your own model, you need to slightly change the code https://github.com/Zhaoyi-Yan/Shift-Net_pytorch/blob/master/models/shift_net/shiftnet_model.py, as it is only for 256256. You'd better generate your own masks for your own dataset as the sizes are not normal 256256. You can offline generate your masks and testing the images with them.

from shift-net_pytorch.

ThJOD avatar ThJOD commented on September 13, 2024

No need the closest lower power of 2, you only need to promise that the h and w should be odd
number, and not less than 256. Then it will work.

Do you mean even number? So they should be divisible by 2? Ok, I will try that out tomorrow!

Besides, when train your own model, you need to slightly change the code https://github.com/Zhaoyi-Yan/Shift-Net_pytorch/blob/master/models/shift_net/shiftnet_model.py, as it is only for 256256. You'd better generate your own masks for your own dataset as the sizes are not normal 256256. You can offline generate your masks and testing the images with them.

I actually already changed that code to train on my own masks before I submitted this issue but yes, that is also necessary

Thanks again!

from shift-net_pytorch.

Zhaoyi-Yan avatar Zhaoyi-Yan commented on September 13, 2024

yes, even number...

from shift-net_pytorch.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.