--- pretty_name: CrawlSinger-OS license: mit language: - zh task_categories: - text-to-speech - text-to-audio - automatic-speech-recognition size_categories: - 100K", "", "", ""], "pitch2word": [0, 1, 2, 3], "bpm": 81, "wav_fn": "segments/wavs/2002000039.wav", "word_dur": [0.17847, 0.84090, 0.51098, 0.25584], "pitch_dur": [0.17847, 0.84090, 0.51098, 0.25584] } ``` | Field | Description | | --- | --- | | `word` | Lyric syllables; `AP`/`SP` denote non-lyric regions. | | `pitch` | MIDI pitch per note segment; `0` denotes a rest. | | `note` | Symbolic note-value token per note segment. | | `pitch2word` | Maps each note segment to its lyric index and supports melisma. | | `bpm` | Global tempo reference. | | `wav_fn` | Audio path relative to the extracted source directory. | | `word_dur`, `pitch_dur` | Optional realized durations for visualization and evaluation; they are not VocalRender conditioning fields. | ## Download Install the Hugging Face CLI, then download only the desired source: ```bash # Inspect the release manifest first hf download pymaster/CrawlSinger-OS manifest.json \ --repo-type dataset \ --local-dir data/CrawlSinger-OS # Example: download the processed OpenSinger subset hf download pymaster/CrawlSinger-OS \ --repo-type dataset \ --include "opensinger/*" \ --local-dir data/CrawlSinger-OS ``` Extract downloaded audio shards with `tar -xf`. Use the SHA-256 values in `manifest.json` to verify large downloads. ## Relationship to VocalRender and VocalRender-Pro The two released models share the same score-native architecture: an interleaved lyric--note representation, continuous AudioVAE latents, and an autoregressive diffusion model that predicts acoustic patches and termination without an explicit duration predictor. | Model | Main training data | Training strategy | Main observed trade-off | | --- | --- | --- | --- | | **VocalRender** | CrawlSinger-OS (>2,300 h), with additional public singing corpora | 40k-step synthetic pretraining, then 20k-step real-data finetuning | Stronger subjective score following (MS-MOS 2.96). | | **VocalRender-Pro** | CrawlSinger (>5,600 h of in-house real singing) | 160k steps with a global batch size of 32,768 continuous tokens | Better intelligibility, speaker similarity, naturalness, and OOD robustness; MS-MOS 2.71. | On Opencpop, VocalRender-Pro reduces WER from 4.44 to 3.88 and improves speaker similarity from 0.922 to 0.929. On CrawlSinger-Eval, WER changes from 4.52 to 4.45 and similarity from 0.919 to 0.926. The paper attributes these gains to the larger amount of real singing and broader singer coverage. Conversely, VocalRender's higher score-following rating may result from more reliable and precise score annotations in its finetuning subset. Only **CrawlSinger-OS and the accompanying public corpora** are distributed in this dataset repository. The in-house CrawlSinger training data used by VocalRender-Pro is not included. ## Limitations - Most automatically produced scores are audio-centric transcriptions: they describe realized ornaments and note splits rather than a composer's concise intent-centric score. - Synthetic and real subsets have noticeably different musical, semantic, and pitch distributions. - Automatically transcribed scores may contain chromatic fluctuations, uncommon note values, or overly fragmented note sequences. - The release primarily targets Mandarin singing and can contain errors from separation, ASR, forced alignment, and pitch transcription. ## Citation ```bibtex @article{chen2026vocalrender, title = {VocalRender: Score-Native Singing Voice Synthesis for Real-World Composition}, author = {Chen, Yukun and Wang, Tianrui and Mu, Zhaoxi and Yang, Xinyu and Chng, EngSiong}, journal = {arXiv preprint arXiv:2607.27768}, year = {2026}, url = {https://arxiv.org/abs/2607.27768} } ``` Please also cite the original source datasets used by the subset(s) in your work.