An open API service indexing awesome lists of open source software.

https://github.com/idiap/exvo-2022

Extracting pre-trained self-supervised embeddings for ICML ExVO 2022 challenge
https://github.com/idiap/exvo-2022

Last synced: 4 months ago
JSON representation

Extracting pre-trained self-supervised embeddings for ICML ExVO 2022 challenge

Awesome Lists containing this project

README

          

# Extracting pre-trained self-supervised embeddings for ICML ExVO 2022 challenge

This python code generates Generation SSL (WavLM) feature representation:

- Estimate frame-level SSL embeddings from pre-trained models
- Generates fixed-length feature representation by using mean and standard deviation functionals

The extracted feature representations were used during ICML ExVo 2022 challenge, for more details see:

T. Purohit, I. B. Mahmoud, B. Vlasenko, M. Magimai.-Doss. Comparing supervised and self-supervised embedding for ExVo Multi-Task
learning track, workshop ICML ExVo 2022

## Install

Create a Conda environment with python 3.10 and activate it:

```bash
conda create -n env python=3.10
conda activate env
```
Install all required python packages

```bash
pip install -r requirements.txt
```