Git Product home page Git Product logo

Comments (3)

ghenter avatar ghenter commented on August 16, 2024

Hi @TaeilJin,

Apologies for the late response. The last few weeks have been busy.

If I understand correctly, there's a simple reason for the shape difference you are wondering about. The dimension of interest here (dimension 1, which measures 70 during training and 1 during synthesis) corresponds to time. During training, the entire input and output sequences are available to us, so we can easily run the LSTM (and the network) forwards over all 70 time steps in one go. This can be done without using any explicit for-loop over time, by applying the LSTM to the input sequence as normal.

Generation time is different. Here we do not know the output sequence, but must instead create it. However, because the MoGlow model is autoregressive, it takes the output of recent time steps as an input to the flow when generating the next pose. This means that we must generate output poses one at a time, so that each new pose can be manually fed back in to the network to generate the next one. We also need an explicit loop over time. This should explain why the input shape only contains 1 single time frame at any given point during synthesis.

from stylegestures.

ghenter avatar ghenter commented on August 16, 2024

@TaeilJin Has your question in this issue been answered?
If so, I would recommend that you close the issue.

from stylegestures.

ghenter avatar ghenter commented on August 16, 2024

Closing this since the question appears to have been answered.

from stylegestures.

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.