Update README.md
Browse files
README.md
CHANGED
|
@@ -34,7 +34,7 @@ huggingface-cli download facebook/w2v-bert-2.0 --local-dir w2v-bert-2.0
|
|
| 34 |
huggingface-cli download amphion/dualcodec esdcodec_25hz_16384_1024.safetensors w2vbert2_mean_var_stats_emilia.pt --local-dir esdcodec_ckpts
|
| 35 |
|
| 36 |
2. To run example inference:
|
| 37 |
-
```
|
| 38 |
python infer.py
|
| 39 |
```
|
| 40 |
|
|
@@ -52,3 +52,27 @@ cd ESDCodec
|
|
| 52 |
/path/to/your/yyy.tar
|
| 53 |
...
|
| 54 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
huggingface-cli download amphion/dualcodec esdcodec_25hz_16384_1024.safetensors w2vbert2_mean_var_stats_emilia.pt --local-dir esdcodec_ckpts
|
| 35 |
|
| 36 |
2. To run example inference:
|
| 37 |
+
```bash
|
| 38 |
python infer.py
|
| 39 |
```
|
| 40 |
|
|
|
|
| 52 |
/path/to/your/yyy.tar
|
| 53 |
...
|
| 54 |
```
|
| 55 |
+
|
| 56 |
+
3. To run example training on Emilia dataset
|
| 57 |
+
```bash
|
| 58 |
+
accelerate launch train.py --config-name=esdcodec_train \
|
| 59 |
+
trainer.batch_size=3 \
|
| 60 |
+
data.segment_speech.segment_length=96000
|
| 61 |
+
```
|
| 62 |
+
|
| 63 |
+
### Acknowledgement
|
| 64 |
+
This repo is directly based on the following excellent projects:
|
| 65 |
+
|
| 66 |
+
- [**DualCodec**](https://github.com/jiaqili3/DualCodec)
|
| 67 |
+
- [**SCNet**](https://github.com/vspeech/SCNet)
|
| 68 |
+
|
| 69 |
+
|
| 70 |
+
## Citation
|
| 71 |
+
```
|
| 72 |
+
@inproceedings{esdcodec,
|
| 73 |
+
title = {ESDCodec: High-Fidelity Neural Speech Codec via Thoroughly Enhanced Semantic Quantizer and Decoder},
|
| 74 |
+
author = {Nan Xu, Zhaolong Huang},
|
| 75 |
+
booktitle = {Proceedings of Interspeech 2026},
|
| 76 |
+
year = {2026}
|
| 77 |
+
}
|
| 78 |
+
```
|