-
Notifications
You must be signed in to change notification settings - Fork 8
/
predict.py
38 lines (27 loc) · 1014 Bytes
/
predict.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
"""
This script generates gestures output based on the speech input.
The gestures will be written in the text file:
3d coordinates together with the velocities.
"""
import sys
from keras.models import load_model
import numpy as np
def predict(model_name, input_file, output_file):
""" Predict human gesture based on the speech
Args:
model_name: name of the Keras model to be used
input_file: file name of the audio input
output_file: file name for the gesture output
Returns:
"""
model = load_model(model_name)
X = np.load(input_file)
predicted = np.array(model.predict(X))
print(predicted.shape)
np.savetxt(output_file, predicted)
if __name__ == "__main__":
# Check if script get enough parameters
if len(sys.argv) < 4:
raise ValueError('Not enough paramters! \nUsage : python ' + sys.argv[0].split("/")[-1] +
' MODEL_NAME INPUT_FILE OUTPUT_FILE')
predict(sys.argv[1], sys.argv[2], sys.argv[3])