Spaces:
Running
Running
| """ | |
| 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> | |
| """ |