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

https://github.com/abdouaziz/wavautoencoder

WavAutoEncoder
https://github.com/abdouaziz/wavautoencoder

asr masked ssl

Last synced: about 2 months ago
JSON representation

WavAutoEncoder

Awesome Lists containing this project

README

        

## Masked WavAutoEncoder

This repository is an implementation of masked wavautoencoder based on Transformer architecture for self supervised speech representation .

## Install

```bash
$ pip install wav-autoencoder
```

## Usage

Simple example for using the model

```python
import torch
from wav_autoencoder import WavAutoEncoderConfig , WavAutoEncoderModel

>> config = WavAutoEncoderConfig()
>> model = WavAutoEncoderModel(config)
>> wav_signal = torch.randn(2, 1, 16000)
>> outputs = model(wav_signal)
>> print(outputs.shape)
```

## Todo

## Citations

```bibtex
@misc{
title = {WavAutoencoder: A Self-Supervised Framework for Learning Audio Representations},
author = {Abdou Aziz DIOP},
year = {2022}
}
```