GithubHelp home page GithubHelp logo

Comments (6)

fatchord avatar fatchord commented on July 17, 2024 3

@hwong39 There's a connection coming from the resnet into fc2.

Anyway it turns out my 'throw in everything but the kitchen sink' approach to this model has made it more complicated than it needs to be. I'm currently training a much simpler version and will upload soon.

from wavernn.

fatchord avatar fatchord commented on July 17, 2024

@hdmjdp I don't see the discrepancy you point out. There are three dense layers at the end and the last two flow directly through without concat or residual between them.

from wavernn.

hdmjdp avatar hdmjdp commented on July 17, 2024

@fatchord

            x = x + h2
            x = torch.cat([x, a3_t], dim=1)
            x = F.relu(self.fc1(x))
            
            x = torch.cat([x, a4_t], dim=1)
            x = F.relu(self.fc2(x))
            x = self.fc3(x)

in your picture, there is a skip operation("+") between the second dense layer(fc1) and the third dense layer(fc2). But your code did not has .

from wavernn.

fatchord avatar fatchord commented on July 17, 2024

@hdmjdp If you take a look at the diagram again you will see three dense layers of which there is only a skip connection between the first (fc1) and the second (fc2). Not sure what I can do to convince you!

from wavernn.

hwong39 avatar hwong39 commented on July 17, 2024

@hdmjdp I have the same question with you.
@fatchord As you said "there is only a skip connection between the first (fc1) and the second (fc2)", but i did not find a skip connection between the first (fc1) and the second (fc2) in your NB4b.

from wavernn.

hdmjdp avatar hdmjdp commented on July 17, 2024

@fatchord “ a much simpler version and will upload soon.”, this version can run in realtime in cpu? I expected it very much.

from wavernn.

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.