diff options
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/pyproject.toml b/pyproject.toml index f6d19dd..743f3b8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,12 @@ name = "swr2-asr" version = "0.1.0" description = "" -authors = ["Philipp Merkel <philippmerkel@outlook.com>"] +authors = [ + "Philipp Merkel <philippmerkel@outlook.com>", + "Valentin Schmidt <valentin.j.schmidt@web.de>", + "Marvin Borner <git@marvinborner.de>", + "Silja Kasper <>" + ] license = "MIT" readme = "readme.md" packages = [{include = "swr2_asr"}] @@ -14,14 +19,12 @@ torchaudio = "2.0.1" tqdm = "^4.66.1" numpy = "^1.25.2" mido = "^1.3.0" -tokenizers = "^0.13.3" click = "^8.1.7" matplotlib = "^3.7.2" pyyaml = "^6.0.1" [tool.poetry.group.dev.dependencies] black = "^23.7.0" -mypy = "^1.5.1" pylint = "^2.17.5" ruff = "^0.0.285" @@ -35,9 +38,8 @@ target-version = "py310" line-length = 100 [tool.poetry.scripts] -train = "swr2_asr.train:run_cli" -train-bpe-tokenizer = "swr2_asr.tokenizer:train_bpe_tokenizer" -train-char-tokenizer = "swr2_asr.tokenizer:train_char_tokenizer" +train = "swr2_asr.train:main" +recognize = "swr2_asr.inference:main" [build-system] requires = ["poetry-core"] |