Giter VIP home page Giter VIP logo

Comments (9)

bodokaiser avatar bodokaiser commented on June 9, 2024

from piwise.

deeptoby avatar deeptoby commented on June 9, 2024

yes, i'd like to do that. i have rewrited segnet.i will send it by my pull.

from piwise.

Viarow avatar Viarow commented on June 9, 2024
    self.dec1 = features[0: 4]    #[0,3]
    self.dec2 = features[5: 9]    #[5,8]
    self.dec3 = features[10: 16]  #[10,15]
    self.dec4 = features[17: 23]  #[17,22]
    self.dec5 = features[24: -1]  #[24,29]

while there's also a maxpool2d layer after each decoder block in the forward function, I wonder why the pooling operation is implemented twice before unpooling? I haven't run the code just quite confused.

from piwise.

bodokaiser avatar bodokaiser commented on June 9, 2024

@Viarow I guess this is a mistake then. Would you mind trying the correct version?

from piwise.

Viarow avatar Viarow commented on June 9, 2024

I'm actually a novice at deep learning, still trying to understand the codes. I guess it will work right only if the range of pretrained layers are set correct (as shown in the annotations above). I will tell you the results after I try the corrections.

from piwise.

deeptoby avatar deeptoby commented on June 9, 2024

Hi,there just one pooling at each dec. could you tell me the your found on detail.

from piwise.

bodokaiser avatar bodokaiser commented on June 9, 2024

from piwise.

deeptoby avatar deeptoby commented on June 9, 2024

layer4 is maxpool, it is used later in code in order to get max-index.

from piwise.

Viarow avatar Viarow commented on June 9, 2024

Oh I see the point. in the FCN8 model,
self.feats = nn.Sequential(*feats[0:9])
self.feat3 = nn.Sequential(*feats[10:16])
self.feat4 = nn.Sequential(*feats[17:23])
self.feat5 = nn.Sequential(*feats[24:30])
are called later in
feats = self.feats(x)
feat3 = self.feat3(feats)
feat4 = self.feat4(feat3)
feat5 = self.feat5(feat4)
fconn = self.fconn(feat5)
which means that some maxpooling layers are also left out in this model?

from piwise.

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.