Giter VIP home page Giter VIP logo

listendenoiseaction's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

listendenoiseaction's Issues

Unable to install mpic with conda

Hi!

I was trying to set up the environment for the code, but I could not get mpic package when running conda install -c conda-forge mpi4py mpic . I then checked the conda-forge repo and found out that there is no mpic pakcage under the conda-forge channel.
image
Instead, there is a mpich package available. Should I install mpich instead of mpic?

In addition, after conda install -c conda-forge mpi4py, conda automatically downloaded and installed python 3.11. Should the python version be 3.11 instead of 3.9?

How to generate .pkl file?

Hello, authors. If I want to use my own audio file and the offered bvh file to generate motion, how to generate feature file in pkl format? Can you provide the script?

How to get pkl files

Hi,
According to my understanding, the pkl files contain the characteristic information of the sound, how can I get the pkl files from the wav files.

waht's the difference between two pkl file corresponding to one audio

Hi, thanks for the great work. May I know why there are two pkl files corresponding to one audio file?
What's the difference between the two pkl files, like kthstreet_gKR_sFM_cAll_d01_mKR_ch01_chargedcableupyour_001_00.audio29_30fps.pkl and kthstreet_gKR_sFM_cAll_d01_mKR_ch01_chargedcableupyour_001_01.audio29_30fps.pkl . If they are both extracted from kthstreet_gKR_sFM_cAll_d01_mKR_ch01_chargedcableupyour_001.wav, why are they different?

What is the Hips_Yposition in pose_features.expmap.txt?

Thank you for providing your great work!

I found that Hips_Yposition is also selected as a motion feature for training.

However, there are already reference_dXposition, reference_dZposition, and reference_dYrotation here, which indicate Hips_Xposition, Hips_Yposition , and Hips_Zposition (I think) because the hip joint is the root joint.

So what is the Hips_Yposition? Or what are the reference_d?positions?

Could you tell me the difference between the reference_d?positions and root positions (hip)?

Diffusion steps

Hi, I read your paper and got a good insight from your work. Thank you for sharing your work and code.

I'm not familiar with diffusion models. In your paper, you set diffusion steps 100 for gesture generation and 150 for dance generation.
I thought it is too much compared to other domain's diffusion models work.

I wonder if what kind of problem happens when you reduce the diffusion steps and how you determine the number.

In the inference stage, why "standardize input function" use input_means(models) instead of means of input_tensor(input)?

In the inference stage, it seems that the mean and standard deviation used for standardization are extracted from the model instead of calculating the input input_tensor, so the normalized result is not a distribution with a mean of 0 and a standard deviation of 1. , which is inconsistent with the description in the first paragraph of the appendix of the paper. Did I miss something?
/model/BaseModel.py line 37

    # standarize input
    def standardizeInput(self, input_tensor):
        return ((input_tensor - self.input_means.type_as(input_tensor)) / self.input_scales.type_as(input_tensor))

    # standarize output
    def standardizeOutput(self, output_tensor):
        return ((output_tensor - self.output_means.type_as(output_tensor)) / self.output_scales.type_as(output_tensor))

    # Add scale and means to output
    def destandardizeInput(self, input_tensor):
        return (input_tensor * self.input_scales.type_as(input_tensor) + self.input_means.type_as(input_tensor))

    # Add scale and means to output
    def destandardizeOutput(self, predictions):
        return (predictions * self.output_scales.type_as(predictions) + self.output_means.type_as(predictions))

some problems about ZeroEGGs

Hello, would you like to ask how the data of ZeroEGGs is converted to smplx representation? I found that the bvh skeleton with all 0 seems to be neither T-Pose nor A-Pose.

Not generating motion

Hi,

When I run ./experiments/dance_LDA.sh, the sliced wav forms can be seen in the results folder but the generated motion and rendered videos are missing. I just followed the instructions in the README. Is there something missing that I should install or download?

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.