From 5c8d7ceac6fa8ea10a53e8a4e1574571a5db8c34 Mon Sep 17 00:00:00 2001 From: "andre.paredes" Date: Tue, 10 Jan 2023 13:54:06 -0500 Subject: [PATCH] sample script added movement --- sample_data/sample_script.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/sample_data/sample_script.py b/sample_data/sample_script.py index 6851598b..f7cf476e 100644 --- a/sample_data/sample_script.py +++ b/sample_data/sample_script.py @@ -8,8 +8,8 @@ from siuba import _ as D import siuba.dply.verbs import siuba.dply.vector -#from opendbm import FacialActivity #needed with docker? -# from opendbm import Movement as mv #needed with docker? +from opendbm import FacialActivity #needed with docker? +from opendbm import Movement as mv #needed with docker? from opendbm import VerbalAcoustics as va from opendbm import Speech as sp @@ -36,5 +36,8 @@ df_va_intensity = var_intensity.to_dataframe() print(df_va_intensity) # get attributes from audio intesity -var_1 = var_intensity.mean() +va_inten_mean = var_intensity.mean() +### Movement +model_mv = mv() +model_mv.fit(path_file) # Requires Docker \ No newline at end of file