Svito-zar / speech-driven-hand-gesture-generation-demo

This repository contains the gesture generation model from the paper "Moving Fast and Slow" (https://www.tandfonline.com/doi/full/10.1080/10447318.2021.1883883) trained on the English dataset
https://svito-zar.github.io/audio2gestures/
Apache License 2.0
25 stars 4 forks source link

The program rested on the process. #2

Closed zf223669 closed 4 years ago

zf223669 commented 4 years ago

83982831-405acf80-a95c-11ea-9d85-b1d7432a765d

Hi, i have reinstall the tensorflow to 1.14 and cuda,However, the program rests on this process.

Svito-zar commented 4 years ago

In your previous issue you have successfully encoded audio. So this part was working before you reinstalled Tensorflow and Cuda. Hence I assume that your python environment is misconfigured now.

I also discovered that Tensorflow 1.14 has a vulnerability as described in this link.

I advise you to create a new virtual environment for python3 using Conda or vEnv and install the recently updated requirements.txt.

zf223669 commented 4 years ago

Hi , I installed Conda,and run :pip install -r requirements.txt. but the console showed one error: ERROR: Could not find a version that satisfies the requirement ensorflow==1.15.2 (from -r requirements.txt (line 7)) (from versions: 2.2.0rc1, 2.2.0rc2, 2.2.0rc3, 2.2.0rc4, 2.2.0) ERROR: No matching distribution found for tensorflow==1.15.2 (from -r requirements.txt (line 7))

zf223669 commented 4 years ago

I have solved the problem about the tensorflow version , because the python i installed is verstion 3.7 which does not support tensor flow 1.15.2. I replaced the python 3.7 to 3.5, it can work now.

zf223669 commented 4 years ago

All the environment have been installed and configured in Conda, but, the issue appear again, staying in this step. 83982831-405acf80-a95c-11ea-9d85-b1d7432a765d

zf223669 commented 4 years ago

Done。 I forgot I wrote a line of code "os.system("pause")" to prevent the console from shutting down automatically :(

Svito-zar commented 4 years ago

@zf223669 , do you mean that you have solved your issue?

zf223669 commented 4 years ago

@zf223669 , do you mean that you have solved your issue?

Yeah! That error was caused by the code"os.system(pause)" that i wrote. so i deleted it and work fine! Thank you very much!

Svito-zar commented 4 years ago

Good to know your issue is resolved