--- license: apache-2.0 language: - am tags: - omnivoice - audio-tokens - preprocessed - tts - amharic - webdataset size_categories: - 10K ` > **Note**: The paths in `data.lst` reference the original Colab extraction path (`/content/omnivoice_amharic_v4/wds_tokens/...`). The training script rewrites these to local paths after download. ## Usage These tokens are automatically downloaded by [`train_waxal_v4.py`](https://huggingface.co/demeleww/omnivoice-amharic-training/blob/main/train_waxal_v4.py): ```python from huggingface_hub import snapshot_download # Download all tokens (~648MB) snapshot_download( repo_id="demeleww/omnivoice-amharic-v4-tokens", repo_type="dataset", local_dir="/content/omnivoice_amharic_v4/wds_tokens", ignore_patterns=[".gitattributes", "README.md"], ) ``` Or run the full training pipeline which handles this automatically: ```python !pip install -q omnivoice webdataset tqdm huggingface-hub from huggingface_hub import login login() !wget -O /content/train_waxal_v4.py "https://huggingface.co/demeleww/omnivoice-amharic-training/resolve/main/train_waxal_v4.py" %run /content/train_waxal_v4.py ``` ## Related - **Training script**: [demeleww/omnivoice-amharic-training](https://huggingface.co/demeleww/omnivoice-amharic-training) - **Base model**: [k2-fsa/OmniVoice](https://huggingface.co/k2-fsa/OmniVoice) - **OmniVoice paper**: [arxiv 2604.00688](https://arxiv.org/abs/2604.00688) - **Georgian recipe reference**: [NMikka/omnivoice-finetuned-ka](https://huggingface.co/NMikka/omnivoice-finetuned-ka)