Feature Extraction
Transformers
Safetensors
vocbulwark_speaker_encoder
audio
speaker-recognition
speaker-embedding
speaker-verification
wav2vec2
vocbulwark
custom_code
Instructions to use mlr2000/vocoder-large-speaker-encoder with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mlr2000/vocoder-large-speaker-encoder with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="mlr2000/vocoder-large-speaker-encoder", trust_remote_code=True)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mlr2000/vocoder-large-speaker-encoder", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 3,155 Bytes
7ef8c9b | 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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | ---
library_name: transformers
tags:
- audio
- speaker-recognition
- speaker-embedding
- speaker-verification
- wav2vec2
- vocbulwark
license: cc-by-4.0
---
# VocBulwark speaker encoder
Standalone speaker encoder: turns a raw waveform into a fixed **768-dimensional**
speaker embedding. It is the conditioning front-end for the companion VocBulwark
vocoder — compute an embedding once from a reference clip of a speaker, then pass
it to the vocoder to synthesize in that voice. The embedding is also usable on its
own for speaker verification / similarity.
Wav2Vec2-based encoder with attentive statistics pooling, trained with a GE2E
objective. Self-contained: loads with `trust_remote_code=True`, no training repo
required.
## Companion Models
This speaker encoder is part of a set of 6 repositories:
| Repo | Role |
|------|------|
| `mlr2000/vocoder-large` | Large vocoder (generates the watermarked audio) |
| `mlr2000/vocoder-large-watermark-detector` | Watermark detector for the large model |
| `mlr2000/vocoder-large-speaker-encoder` | Speaker encoder (this repo) |
| `mlr2000/vocoder-small` | Small vocoder |
| `mlr2000/vocoder-small-watermark-detector` | Watermark detector for the small model |
| `mlr2000/vocoder-small-speaker-encoder` | Speaker encoder for the small model |
## Usage
```python
import torchaudio, torchaudio.functional as AF
from transformers import AutoModel
enc = AutoModel.from_pretrained("mlr2000/vocoder-large-speaker-encoder", trust_remote_code=True).eval()
wav, sr = torchaudio.load("reference.wav") # [C, T]
wav = wav.mean(0, keepdim=True) # mono [1, T]
if sr != enc.config.raw_sample_rate: # encoder expects 22.05 kHz
wav = AF.resample(wav, sr, enc.config.raw_sample_rate)
emb = enc.embed(wav) # [1, 768] — feed as speaker_embedding to the vocoder
```
See **`example_roundtrip.ipynb`** in this repo for the full pipeline
(reference clip → embedding → vocode → detect watermark).
## Notes
- Input: mono waveform at **22.05 kHz** (`config.raw_sample_rate`). Resample first if your audio differs.
- Output: `[B, 768]` L2-comparable speaker embeddings.
- Pair with the VocBulwark vocoder trained *jointly* with this encoder — an
embedding from a different encoder will not condition the vocoder correctly.
- This encoder is paired with `mlr2000/vocoder-large`. For the small vocoder (`mlr2000/vocoder-small`) use the companion small speaker encoder (`mlr2000/vocoder-small-speaker-encoder`).
- Not intended for speaker identification or surveillance of individuals without consent.
## Citation
If you use this model, please cite:
```bibtex
@misc{muletta2026,
title = {Training a Discriminator-Free Foundation Vocoder
with Integrated Audio Watermarking},
author = {Muletta, Romolo and Deriu, Jan},
year = {2026},
note = {VT2 Project Report, ZHAW School of Engineering}
}
```
## License
`cc-by-4.0`. Trained on MLS (CC-BY-4.0) and Common Voice (CC0); builds on
BigVGAN (MIT) and wav2vec 2.0 (Apache-2.0). Please retain attribution when
redistributing or building on this model. |