Giter Site home page Giter Site logo

Comments (8)

knazeri avatar knazeri commented on September 18, 2024

@ljjcoder Partial convolution is doing the same thing, only in their paper, they declare the mask M (0 for holes), which is 1-M in our code!

Judging by your results, it looks like you have downloaded their Training Mask Dataset and that's why your input is mostly white! I'm not sure if that's the dataset they used to train their model because it obviously is different than what we see in their paper. We used their Testing Irregular Mask Dataset for our training which contains 12,000 irregular masks, and by augmentation we increased the size to 60,000!

from edge-connect.

dulibubai avatar dulibubai commented on September 18, 2024

Hello!Can you help me with the augmented train masks dataset which originally made by Guilin Liu ?

from edge-connect.

knazeri avatar knazeri commented on September 18, 2024

@dulibubai You can try rotating each image by 4 multiples of 90 degrees, assuming img is an ndaaray:

from scipy.ndimage import rotate
rotate(img, 90)

You can also reflect the image about its y axis:

img[:, ::-1, ...]

If you conbine both methods, it gives you 4 x 2 size of the original dataset.

from edge-connect.

dulibubai avatar dulibubai commented on September 18, 2024

But the original masks dataset is not the binary images,which don't like the form of test masks dataset?
How do you address it?

from edge-connect.

knazeri avatar knazeri commented on September 18, 2024

@dulibubai Like I said, we used their Testing Irregular Mask Dataset, and they are binary mask images. You can easily augment the dataset to be almost 96,000, which is a good figure!
You can also download Quick Draw Irregular Mask Dataset by Karim Iskakov which contains lots of binary strokes drawn by human hand.

from edge-connect.

dulibubai avatar dulibubai commented on September 18, 2024

I See,Thanks again!

from edge-connect.

ljjcoder avatar ljjcoder commented on September 18, 2024

@knazeri Thanks for your reply!I also some question about training。there are three stage for trainning the model,1) training the edge model, 2) training the inpaint model and 3) training the joint model。you say the celebA need about 40 epoch to train。Did the 40 epoch is need for every stage or only for 3 stage and how many epoch does it need for every stage?

from edge-connect.

knazeri avatar knazeri commented on September 18, 2024

@jtetc Technically you need to train each one separately from scratch! However, if you want to speed up the training, you can start by pre-training your model with a smaller input size (say 128). This especially helps with edge model (mode=1)

from edge-connect.

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.