{"id":13741492,"url":"https://github.com/MontrealCorpusTools/Montreal-Forced-Aligner","last_synced_at":"2025-05-08T21:34:29.918Z","repository":{"id":37285204,"uuid":"44983969","full_name":"MontrealCorpusTools/Montreal-Forced-Aligner","owner":"MontrealCorpusTools","description":"Command line utility for forced alignment using Kaldi","archived":false,"fork":false,"pushed_at":"2024-11-11T00:57:15.000Z","size":87827,"stargazers_count":1337,"open_issues_count":239,"forks_count":247,"subscribers_count":36,"default_branch":"main","last_synced_at":"2024-11-11T01:34:39.525Z","etag":null,"topics":["acoustic-model","forced-alignment","grapheme-to-phone","kaldi","pronunciation-dictionary","python"],"latest_commit_sha":null,"homepage":"https://montrealcorpustools.github.io/Montreal-Forced-Aligner/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MontrealCorpusTools.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-10-26T17:02:06.000Z","updated_at":"2024-11-11T00:57:19.000Z","dependencies_parsed_at":"2023-10-17T06:15:10.536Z","dependency_job_id":"e9b2e71d-703b-4d13-83e8-1d90ce736724","html_url":"https://github.com/MontrealCorpusTools/Montreal-Forced-Aligner","commit_stats":{"total_commits":812,"total_committers":25,"mean_commits":32.48,"dds":"0.056650246305418706","last_synced_commit":"e08da3b843bc34b10224bef49c98e47ade6339c0"},"previous_names":[],"tags_count":99,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MontrealCorpusTools%2FMontreal-Forced-Aligner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MontrealCorpusTools%2FMontreal-Forced-Aligner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MontrealCorpusTools%2FMontreal-Forced-Aligner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MontrealCorpusTools%2FMontreal-Forced-Aligner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MontrealCorpusTools","download_url":"https://codeload.github.com/MontrealCorpusTools/Montreal-Forced-Aligner/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224120493,"owners_count":17259078,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["acoustic-model","forced-alignment","grapheme-to-phone","kaldi","pronunciation-dictionary","python"],"created_at":"2024-08-03T04:00:59.698Z","updated_at":"2024-11-15T11:31:24.664Z","avatar_url":"https://github.com/MontrealCorpusTools.png","language":"Python","funding_links":[],"categories":["Software","Python"],"sub_categories":["Utilities"],"readme":"# Montreal Forced Aligner\n\n![Continuous Integration](https://github.com/MontrealCorpusTools/Montreal-Forced-Aligner/actions/workflows/main.yml/badge.svg)\n[![codecov](https://codecov.io/gh/MontrealCorpusTools/Montreal-Forced-Aligner/branch/main/graph/badge.svg?token=GgfM9GXFJ4)](https://codecov.io/gh/MontrealCorpusTools/Montreal-Forced-Aligner)\n[![Documentation Status](https://readthedocs.org/projects/montreal-forced-aligner/badge/?version=latest)](http://montreal-forced-aligner.readthedocs.io/en/latest/?badge=latest)\n[![Interrogate Status](https://montreal-forced-aligner.readthedocs.io/en/latest/_static/interrogate_badge.svg)](https://github.com/MontrealCorpusTools/montreal-forced-aligner/)\n[![DOI](https://zenodo.org/badge/44983969.svg)](https://zenodo.org/badge/latestdoi/44983969)\n\nThe Montreal Forced Aligner is a command line utility for performing forced alignment of speech datasets using Kaldi (http://kaldi-asr.org/).\n\nPlease see the documentation http://montreal-forced-aligner.readthedocs.io for installation and usage.\n\nIf you run into any issues, please check the [mailing list](https://groups.google.com/forum/#!forum/mfa-users) for fixes/workarounds or to post a [new issue](https://github.com/MontrealCorpusTools/Montreal-Forced-Aligner/issues).\n\n## Installation\n\nYou can install MFA either entirely through [conda](https://docs.conda.io/en/latest/) or a mix of conda for Kaldi and Pynini dependencies and Python packaging for MFA itself\n\n### Conda installation\n\nMFA is hosted on [conda-forge](https://conda-forge.org/) and can be installed via:\n\n```\nconda install -c conda-forge montreal-forced-aligner\n```\n\nin your environment of choice.\n\n### Source installation\n\nIf you'd like to install a local version of MFA or want to use the development set up, the easiest way is first create the dev environment from the yaml in the repo root directory:\n\n```\nconda env create -n mfa-dev -f environment.yml\n```\n\nAlternatively, the dependencies can be installed via:\n\n```\nconda install -c conda-forge python=3.11 kaldi librosa biopython praatio tqdm requests colorama pyyaml pynini openfst baumwelch ngram\n```\n\nMFA can be installed in develop mode via:\n\n```\npip install -e .[dev]\n```\n\nYou should be able to see appropriate output from `mfa version`\n\n#### Development\n\nThe test suite is run via `tox -e py38-win` or `tox -e py38-unix` depending on the OS, and the docs are generated via `tox -e docs`\n\n\n## Quick links\n\n* [Getting started docs](https://montreal-forced-aligner.readthedocs.io/en/latest/getting_started.html)\n* [User Guide](https://montreal-forced-aligner.readthedocs.io/en/latest/user_guide/index.html)\n* [API Reference](https://montreal-forced-aligner.readthedocs.io/en/latest/reference/index.html)\n* [Release notes](https://montreal-forced-aligner.readthedocs.io/en/latest/changelog/index.html)\n* [MFA Models](https://github.com/MontrealCorpusTools/mfa-models)\n* [Eleanor Chodroff's MFA tutorial](https://lingmethodshub.github.io/content/tools/mfa/mfa-tutorial/)\n* [@mmcauliffe's forced alignment blog posts](https://memcauliffe.com/tag/forced-alignment.html)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FMontrealCorpusTools%2FMontreal-Forced-Aligner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FMontrealCorpusTools%2FMontreal-Forced-Aligner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FMontrealCorpusTools%2FMontreal-Forced-Aligner/lists"}