File size: 1,160 Bytes
47aeb66
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21cb4dd
278393c
21cb4dd
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""
File: description.py
Author: Elena Ryumina and Dmitry Ryumin
Description: Project description for the Gradio app.
License: MIT License
"""

# Importing necessary components for the Gradio app
from app.config import config_data

DESCRIPTION_DYNAMIC = f"""\
# Zero-Shot Audio-Visual Compound Expression Recognition (AVCER)

AVCER predicts six basic emotions (Anger, Disgust, Fear, Happiness, Sadness, Surprise), neutral state (Neutral), and twelve compound emotions 
(Fearfully Surprised, Happily Surprised, Sadly Surprised, Disgustedly Surprised, Angrily Surprised, Sadly Fearful, Sadly Angry, Sadly Disgusted, 
Fearfully Angry, Fearfully Disgusted, Angrily Disgusted, Happily Disgusted).

<div class="app-flex-container">
    <img src="https://img.shields.io/badge/version-v{config_data.APP_VERSION}-rc0" alt="Version">
    <a href='https://github.com/ElenaRyumina/AVCER' target='_blank'><img src='https://img.shields.io/github/stars/ElenaRyumina/AVCER?style=flat' alt='GitHub' /></a>
    <a href='https://arxiv.org/abs/2403.12687' target='_blank'><img src='https://img.shields.io/badge/arXiv-2403.12687-b31b1b.svg?style=flat' alt='arXiv' /></a>
</div>
"""