├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ └── feature-request.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── lint_and_test.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── ci └── problem-matchers │ ├── README.md │ ├── black.json │ ├── flake8.json │ ├── gcc.json │ ├── isort.json │ └── mypy.json ├── mypy.ini ├── omniASR_header.jpg ├── pyproject.toml ├── result_table.png ├── src └── omnilingual_asr │ ├── __init__.py │ ├── cards │ ├── .gitkeep │ ├── README.md │ ├── datasets │ │ └── example_dataset.yaml │ └── models │ │ └── rc_models.yaml │ ├── datasets │ ├── __init__.py │ ├── impl │ │ ├── manifest_asr_dataset.py │ │ └── mixture_parquet_asr_dataset.py │ ├── interfaces │ │ ├── storage_interface.py │ │ └── task_interface.py │ ├── storage │ │ ├── manifest_storage.py │ │ └── mixture_parquet_storage.py │ ├── tasks │ │ ├── asr_task.py │ │ └── ssl_task.py │ └── utils │ │ ├── audio.py │ │ ├── batching.py │ │ └── text.py │ └── models │ ├── README.md │ ├── __init__.py │ ├── inference │ ├── README.md │ ├── __init__.py │ └── pipeline.py │ ├── wav2vec2_asr │ ├── __init__.py │ └── config.py │ ├── wav2vec2_llama │ ├── __init__.py │ ├── beamsearch.py │ ├── config.py │ ├── factory.py │ ├── hub.py │ ├── interop.py │ ├── lang_ids.py │ ├── languges_lookup_table.parquet │ └── model.py │ └── wav2vec2_ssl │ ├── __init__.py │ └── config.py ├── tests ├── conftest.py └── unit │ ├── __init__.py │ ├── test_audio_cropper.py │ ├── test_audio_utils.py │ └── test_lang_ids.py └── workflows ├── dataprep ├── README.md ├── audio_tools.py ├── dataloader_example.py ├── hf_dataset_ingestion_example.py ├── norm_config_module.py ├── punctuations.lst └── text_tools.py └── recipes └── wav2vec2 └── asr ├── README.md ├── __init__.py ├── __main__.py ├── configs ├── ctc-finetune-recommendation.yaml ├── ctc-finetune.yaml ├── ctc-from-encoder-recommendation.yaml ├── ctc-from-encoder.yaml ├── llm-finetune.yaml └── llm-from-encoder.yaml ├── criterion.py ├── dataset_selector.py ├── default_config.py ├── eval ├── __init__.py ├── __main__.py ├── configs │ └── fleurs-mls-mini.yaml ├── default_config.py └── recipe.py ├── metrics.py ├── recipe.py └── wer_calculator.py /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @cirquit 2 | * @artemru 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/lint_and_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/.github/workflows/lint_and_test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | 0.1.0 (November 10, 2025) 2 | First release version 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/README.md -------------------------------------------------------------------------------- /ci/problem-matchers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/ci/problem-matchers/README.md -------------------------------------------------------------------------------- /ci/problem-matchers/black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/ci/problem-matchers/black.json -------------------------------------------------------------------------------- /ci/problem-matchers/flake8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/ci/problem-matchers/flake8.json -------------------------------------------------------------------------------- /ci/problem-matchers/gcc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/ci/problem-matchers/gcc.json -------------------------------------------------------------------------------- /ci/problem-matchers/isort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/ci/problem-matchers/isort.json -------------------------------------------------------------------------------- /ci/problem-matchers/mypy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/ci/problem-matchers/mypy.json -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/mypy.ini -------------------------------------------------------------------------------- /omniASR_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/omniASR_header.jpg -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/pyproject.toml -------------------------------------------------------------------------------- /result_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/result_table.png -------------------------------------------------------------------------------- /src/omnilingual_asr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/__init__.py -------------------------------------------------------------------------------- /src/omnilingual_asr/cards/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/omnilingual_asr/cards/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/cards/README.md -------------------------------------------------------------------------------- /src/omnilingual_asr/cards/datasets/example_dataset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/cards/datasets/example_dataset.yaml -------------------------------------------------------------------------------- /src/omnilingual_asr/cards/models/rc_models.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/cards/models/rc_models.yaml -------------------------------------------------------------------------------- /src/omnilingual_asr/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/datasets/__init__.py -------------------------------------------------------------------------------- /src/omnilingual_asr/datasets/impl/manifest_asr_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/datasets/impl/manifest_asr_dataset.py -------------------------------------------------------------------------------- /src/omnilingual_asr/datasets/impl/mixture_parquet_asr_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/datasets/impl/mixture_parquet_asr_dataset.py -------------------------------------------------------------------------------- /src/omnilingual_asr/datasets/interfaces/storage_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/datasets/interfaces/storage_interface.py -------------------------------------------------------------------------------- /src/omnilingual_asr/datasets/interfaces/task_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/datasets/interfaces/task_interface.py -------------------------------------------------------------------------------- /src/omnilingual_asr/datasets/storage/manifest_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/datasets/storage/manifest_storage.py -------------------------------------------------------------------------------- /src/omnilingual_asr/datasets/storage/mixture_parquet_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/datasets/storage/mixture_parquet_storage.py -------------------------------------------------------------------------------- /src/omnilingual_asr/datasets/tasks/asr_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/datasets/tasks/asr_task.py -------------------------------------------------------------------------------- /src/omnilingual_asr/datasets/tasks/ssl_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/datasets/tasks/ssl_task.py -------------------------------------------------------------------------------- /src/omnilingual_asr/datasets/utils/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/datasets/utils/audio.py -------------------------------------------------------------------------------- /src/omnilingual_asr/datasets/utils/batching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/datasets/utils/batching.py -------------------------------------------------------------------------------- /src/omnilingual_asr/datasets/utils/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/datasets/utils/text.py -------------------------------------------------------------------------------- /src/omnilingual_asr/models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/models/README.md -------------------------------------------------------------------------------- /src/omnilingual_asr/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/models/__init__.py -------------------------------------------------------------------------------- /src/omnilingual_asr/models/inference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/models/inference/README.md -------------------------------------------------------------------------------- /src/omnilingual_asr/models/inference/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/models/inference/__init__.py -------------------------------------------------------------------------------- /src/omnilingual_asr/models/inference/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/models/inference/pipeline.py -------------------------------------------------------------------------------- /src/omnilingual_asr/models/wav2vec2_asr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/models/wav2vec2_asr/__init__.py -------------------------------------------------------------------------------- /src/omnilingual_asr/models/wav2vec2_asr/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/models/wav2vec2_asr/config.py -------------------------------------------------------------------------------- /src/omnilingual_asr/models/wav2vec2_llama/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/models/wav2vec2_llama/__init__.py -------------------------------------------------------------------------------- /src/omnilingual_asr/models/wav2vec2_llama/beamsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/models/wav2vec2_llama/beamsearch.py -------------------------------------------------------------------------------- /src/omnilingual_asr/models/wav2vec2_llama/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/models/wav2vec2_llama/config.py -------------------------------------------------------------------------------- /src/omnilingual_asr/models/wav2vec2_llama/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/models/wav2vec2_llama/factory.py -------------------------------------------------------------------------------- /src/omnilingual_asr/models/wav2vec2_llama/hub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/models/wav2vec2_llama/hub.py -------------------------------------------------------------------------------- /src/omnilingual_asr/models/wav2vec2_llama/interop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/models/wav2vec2_llama/interop.py -------------------------------------------------------------------------------- /src/omnilingual_asr/models/wav2vec2_llama/lang_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/models/wav2vec2_llama/lang_ids.py -------------------------------------------------------------------------------- /src/omnilingual_asr/models/wav2vec2_llama/languges_lookup_table.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/models/wav2vec2_llama/languges_lookup_table.parquet -------------------------------------------------------------------------------- /src/omnilingual_asr/models/wav2vec2_llama/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/models/wav2vec2_llama/model.py -------------------------------------------------------------------------------- /src/omnilingual_asr/models/wav2vec2_ssl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/models/wav2vec2_ssl/__init__.py -------------------------------------------------------------------------------- /src/omnilingual_asr/models/wav2vec2_ssl/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/src/omnilingual_asr/models/wav2vec2_ssl/config.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/tests/unit/__init__.py -------------------------------------------------------------------------------- /tests/unit/test_audio_cropper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/tests/unit/test_audio_cropper.py -------------------------------------------------------------------------------- /tests/unit/test_audio_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/tests/unit/test_audio_utils.py -------------------------------------------------------------------------------- /tests/unit/test_lang_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/tests/unit/test_lang_ids.py -------------------------------------------------------------------------------- /workflows/dataprep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/workflows/dataprep/README.md -------------------------------------------------------------------------------- /workflows/dataprep/audio_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/workflows/dataprep/audio_tools.py -------------------------------------------------------------------------------- /workflows/dataprep/dataloader_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/workflows/dataprep/dataloader_example.py -------------------------------------------------------------------------------- /workflows/dataprep/hf_dataset_ingestion_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/workflows/dataprep/hf_dataset_ingestion_example.py -------------------------------------------------------------------------------- /workflows/dataprep/norm_config_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/workflows/dataprep/norm_config_module.py -------------------------------------------------------------------------------- /workflows/dataprep/punctuations.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/workflows/dataprep/punctuations.lst -------------------------------------------------------------------------------- /workflows/dataprep/text_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/workflows/dataprep/text_tools.py -------------------------------------------------------------------------------- /workflows/recipes/wav2vec2/asr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/workflows/recipes/wav2vec2/asr/README.md -------------------------------------------------------------------------------- /workflows/recipes/wav2vec2/asr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/workflows/recipes/wav2vec2/asr/__init__.py -------------------------------------------------------------------------------- /workflows/recipes/wav2vec2/asr/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/workflows/recipes/wav2vec2/asr/__main__.py -------------------------------------------------------------------------------- /workflows/recipes/wav2vec2/asr/configs/ctc-finetune-recommendation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/workflows/recipes/wav2vec2/asr/configs/ctc-finetune-recommendation.yaml -------------------------------------------------------------------------------- /workflows/recipes/wav2vec2/asr/configs/ctc-finetune.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/workflows/recipes/wav2vec2/asr/configs/ctc-finetune.yaml -------------------------------------------------------------------------------- /workflows/recipes/wav2vec2/asr/configs/ctc-from-encoder-recommendation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/workflows/recipes/wav2vec2/asr/configs/ctc-from-encoder-recommendation.yaml -------------------------------------------------------------------------------- /workflows/recipes/wav2vec2/asr/configs/ctc-from-encoder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/workflows/recipes/wav2vec2/asr/configs/ctc-from-encoder.yaml -------------------------------------------------------------------------------- /workflows/recipes/wav2vec2/asr/configs/llm-finetune.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/workflows/recipes/wav2vec2/asr/configs/llm-finetune.yaml -------------------------------------------------------------------------------- /workflows/recipes/wav2vec2/asr/configs/llm-from-encoder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/workflows/recipes/wav2vec2/asr/configs/llm-from-encoder.yaml -------------------------------------------------------------------------------- /workflows/recipes/wav2vec2/asr/criterion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/workflows/recipes/wav2vec2/asr/criterion.py -------------------------------------------------------------------------------- /workflows/recipes/wav2vec2/asr/dataset_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/workflows/recipes/wav2vec2/asr/dataset_selector.py -------------------------------------------------------------------------------- /workflows/recipes/wav2vec2/asr/default_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/workflows/recipes/wav2vec2/asr/default_config.py -------------------------------------------------------------------------------- /workflows/recipes/wav2vec2/asr/eval/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/workflows/recipes/wav2vec2/asr/eval/__init__.py -------------------------------------------------------------------------------- /workflows/recipes/wav2vec2/asr/eval/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/workflows/recipes/wav2vec2/asr/eval/__main__.py -------------------------------------------------------------------------------- /workflows/recipes/wav2vec2/asr/eval/configs/fleurs-mls-mini.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/workflows/recipes/wav2vec2/asr/eval/configs/fleurs-mls-mini.yaml -------------------------------------------------------------------------------- /workflows/recipes/wav2vec2/asr/eval/default_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/workflows/recipes/wav2vec2/asr/eval/default_config.py -------------------------------------------------------------------------------- /workflows/recipes/wav2vec2/asr/eval/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/workflows/recipes/wav2vec2/asr/eval/recipe.py -------------------------------------------------------------------------------- /workflows/recipes/wav2vec2/asr/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/workflows/recipes/wav2vec2/asr/metrics.py -------------------------------------------------------------------------------- /workflows/recipes/wav2vec2/asr/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/workflows/recipes/wav2vec2/asr/recipe.py -------------------------------------------------------------------------------- /workflows/recipes/wav2vec2/asr/wer_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/omnilingual-asr/HEAD/workflows/recipes/wav2vec2/asr/wer_calculator.py --------------------------------------------------------------------------------