update the paper link and other info
Browse files
README.md
CHANGED
|
@@ -10,7 +10,14 @@ tags:
|
|
| 10 |
---
|
| 11 |
# Ξ΅ar-VAE2
|
| 12 |
|
| 13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
|
| 15 |
---
|
| 16 |
|
|
@@ -43,7 +50,7 @@ Reconstruction quality on **Song Describer Dataset** (546 full tracks, 48 kHz st
|
|
| 43 |
| **Ξ΅ar-VAE2 (base)** | 10.9 | 0.916 | 0.572 | 0.966 |
|
| 44 |
| **Ξ΅ar-VAE2 (full)** | **11.3** | **0.870** | **0.461** | **0.973** |
|
| 45 |
|
| 46 |
-
> Ξ΅ar-VAE2 (full) achieves the best spectral fidelity (STFT Dist, Mel Dist) among all systems while matching the phase coherence (CCPC) of the
|
| 47 |
|
| 48 |
## Spec-SnakeBeta
|
| 49 |
|
|
@@ -108,36 +115,6 @@ reconstructed = reconstructed[:, :, :orig_len]
|
|
| 108 |
python inference.py --checkpoint ear_vae2.pt --config configs/ear_vae2.json --input input.wav --output output.wav
|
| 109 |
```
|
| 110 |
|
| 111 |
-
<details>
|
| 112 |
-
<summary><b>π Project Structure</b></summary>
|
| 113 |
-
|
| 114 |
-
```
|
| 115 |
-
EAR_VAE2/
|
| 116 |
-
βββ README.md
|
| 117 |
-
βββ LICENSE
|
| 118 |
-
βββ requirements.txt
|
| 119 |
-
βββ inference.py # CLI inference script
|
| 120 |
-
βββ configs/
|
| 121 |
-
β βββ ear_vae2.json # Full model config (with refiner)
|
| 122 |
-
βββ ear_vae2/
|
| 123 |
-
β βββ __init__.py
|
| 124 |
-
β βββ model.py # Self-contained EarVAE2 model
|
| 125 |
-
β # (encoder, decoder, Spec-SnakeBeta,
|
| 126 |
-
β # refiner, STFT helpers)
|
| 127 |
-
βββ assets/
|
| 128 |
-
β βββ architecture.png
|
| 129 |
-
β βββ spec_snakebeta.png
|
| 130 |
-
β βββ input_repr.png
|
| 131 |
-
βββ docs/ # Demo page (GitHub Pages, served from /docs)
|
| 132 |
-
βββ index.html
|
| 133 |
-
βββ config.js
|
| 134 |
-
βββ css/
|
| 135 |
-
βββ js/
|
| 136 |
-
βββ assets/
|
| 137 |
-
βββ cases/
|
| 138 |
-
```
|
| 139 |
-
|
| 140 |
-
</details>
|
| 141 |
|
| 142 |
## Model Details
|
| 143 |
|
|
@@ -157,11 +134,14 @@ EAR_VAE2/
|
|
| 157 |
## Citation
|
| 158 |
|
| 159 |
```bibtex
|
| 160 |
-
@
|
| 161 |
-
title
|
| 162 |
-
author
|
| 163 |
-
|
| 164 |
-
|
|
|
|
|
|
|
|
|
|
| 165 |
}
|
| 166 |
```
|
| 167 |
|
|
@@ -179,6 +159,4 @@ We gratefully acknowledge the following projects that inspired components of Ξ΅a
|
|
| 179 |
|
| 180 |
## License
|
| 181 |
|
| 182 |
-
This project is licensed under the [Apache License 2.0](LICENSE).
|
| 183 |
-
|
| 184 |
-
Copyright 2026 Epsilon Acoustic Revolution Lab.
|
|
|
|
| 10 |
---
|
| 11 |
# Ξ΅ar-VAE2
|
| 12 |
|
| 13 |
+
**Fourier is Frontier: Frequency-Aware Autoencoding for High-Fidelity Music Reconstruction**
|
| 14 |
+
|
| 15 |
+
Kangdi Wang<sup>1</sup> Β· Yusheng Dai<sup>2</sup> Β· Jin Xu<sup>1β </sup>
|
| 16 |
+
|
| 17 |
+
<sup>1</sup> Qwen Team, Alibaba <sup>2</sup> Monash University <sup>β </sup> Corresponding author
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
[[Demo Page](https://eps-acoustic-revolution-lab.github.io/EAR_VAE2/)] - [[Paper](https://arxiv.org/abs/2608.19843)] - [[Codebase](https://github.com/Eps-Acoustic-Revolution-Lab/EAR_VAE2)]
|
| 21 |
|
| 22 |
---
|
| 23 |
|
|
|
|
| 50 |
| **Ξ΅ar-VAE2 (base)** | 10.9 | 0.916 | 0.572 | 0.966 |
|
| 51 |
| **Ξ΅ar-VAE2 (full)** | **11.3** | **0.870** | **0.461** | **0.973** |
|
| 52 |
|
| 53 |
+
> Ξ΅ar-VAE2 (full) achieves the best spectral fidelity (STFT Dist, Mel Dist) among all systems while matching the phase coherence (CCPC) of the Ξ΅ar-VAE baseline.
|
| 54 |
|
| 55 |
## Spec-SnakeBeta
|
| 56 |
|
|
|
|
| 115 |
python inference.py --checkpoint ear_vae2.pt --config configs/ear_vae2.json --input input.wav --output output.wav
|
| 116 |
```
|
| 117 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 118 |
|
| 119 |
## Model Details
|
| 120 |
|
|
|
|
| 134 |
## Citation
|
| 135 |
|
| 136 |
```bibtex
|
| 137 |
+
@misc{earvae2,
|
| 138 |
+
title = {Fourier is Frontier: Frequency-Aware Autoencoding for High-Fidelity Music Reconstruction},
|
| 139 |
+
author = {Kangdi Wang and Yusheng Dai and Jin Xu},
|
| 140 |
+
year = {2026},
|
| 141 |
+
eprint = {2608.19843},
|
| 142 |
+
archivePrefix = {arXiv},
|
| 143 |
+
primaryClass = {cs.SD},
|
| 144 |
+
url = {https://arxiv.org/abs/2608.19843}
|
| 145 |
}
|
| 146 |
```
|
| 147 |
|
|
|
|
| 159 |
|
| 160 |
## License
|
| 161 |
|
| 162 |
+
This project is licensed under the [Apache License 2.0](LICENSE).
|
|
|
|
|
|