-
Notifications
You must be signed in to change notification settings - Fork 6
/
configs.py
42 lines (36 loc) · 1.57 KB
/
configs.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
39
40
41
42
config_preprocessing = {
"raw_video_path": r"H:\Affwild2\raw_video",
"test_video_path": r"H:\Affwild2\Test_Set",
"annotation_path": r"H:\Affwild2\annotations\VA_Set",
"image_path": r"H:\Affwild2\cropped_aligned",
"output_path": r"H:\Affwild2_processed",
"aural_feature_list": ["mfcc", "egemaps", "vggish"],
"opensmile_exe_path": r"D:\opensmile-3.0-win-x64\bin\SMILExtract.exe",
"opensmile_config_path": r"D:\opensmile-3.0-win-x64\config",
"openface_config": {
"openface_directory": "D:\\OpenFace-master\\x64\\Release\\FeatureExtraction",
"input_flag": " -f ",
"output_features": " -2Dfp ",
"output_action_unit": " -aus ",
"output_image_flag": " -simalign ",
"output_image_format": " -format_aligned jpg ",
"output_image_size": " -simsize 48",
"output_image_mask_flag": " -nomask ",
"output_filename_flag": " -of ",
"output_directory_flag": " -out_dir "
}
}
config_processing = {
}
# I extracted vggish feature using remote server.
# config_preprocessing = {
# "raw_video_path": r"/home/zhangsu/affwild/raw_video",
# "annotation_path": r"/home/zhangsu/affwild/annotations/VA_Set",
# "image_path": r"H:\Affwild2\cropped_aligned",
# "output_path": r"/home/zhangsu/affwild_processed",
#
# "aural_feature_list": ["mfcc", "vggish"],
# "opensmile_exe_path": r"D:\opensmile-3.0-win-x64\bin\SMILExtract.exe",
# "opensmile_config_path": r"D:\opensmile-3.0-win-x64\config",
#
# }