File size: 1,423 Bytes
f16bb9f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[AppSettings]
APP_VERSION = "0.0.1"
CSS_PATH = "app.css"

[General]
SR = 16000
START_TIME = 0
WIN_MAX_LENGTH = 4
WIN_SHIFT = 2
WIN_MIN_LENGTH = 2
DICT_EMO = [
    "Neutral",
    "Happy",
    "Sad",
    "Anger",
    "Surprise",
    "Disgust",
    "Fear",
]
DICT_SENT = [
    "Negative",
    "Neutral",
    "Positive",
]

[InformationMessages]
NOTI_RESULTS = [
    "Upload or record video",
    "Video uploaded, you can perform calculations",
]

[OtherMessages]
CLEAR = "Clear"
SUBMIT = "Calculate"

[Labels]
VIDEO = "Video"
FACE_IMAGES = "Face images"
WAVEFORM = "Waveform"
EMO_STATS = "Statistics of emotions"
SENT_STATS = "Statistics of sentiments"

[TabCreators]
"⭐ App" = "app_tab"
"βš™οΈ Settings" = "settings_app_tab"
"πŸ’‘ About App" = "about_app_tab"
"🎭 Authors" = "about_authors_tab"
"πŸ“‹ Requirements" = "requirements_app_tab"

[StaticPaths]
MODELS = "models"
IMAGES = "images"
WEIGHTS = "weights"
VAD_MODEL = "snakers4/silero-vad"
HF_MODELS = "https://huggingface.co/ElenaRyumina/MASAI_models/resolve/main/"
EMO_AFFECTNET_WEIGHTS = "emo_affectnet_weights.pt"
EMO_SENT_AUDIO_WEIGHTS = "emo_sent_audio_weights.pth"
EMO_SENT_TEXT_WEIGHTS = "emo_sent_text_weights.pth"
EMO_SENT_VIDEO_WEIGHTS = "emo_sent_video_weights.pth"
YOLOV8N_FACE = "yolov8n-face.pt"
OPENAI_WHISPER = "openai/whisper-base"

[Requirements]
LIBRARY = "Library"
RECOMMENDED_VERSION = "Recommended version"
CURRENT_VERSION = "Current version"