1
0
mirror of https://github.com/malarinv/jasper-asr.git synced 2026-06-13 12:32:08 +00:00

jasper asr first commit

This commit is contained in:
2020-03-16 14:20:54 +05:30
parent 7a320bb250
commit 880dd8bf6a
6 changed files with 296 additions and 0 deletions

17
setup.py Normal file
View File

@@ -0,0 +1,17 @@
from setuptools import setup
setup(
name="jasper-asr",
version="0.1",
description="Tool to get gcp alignments of tts-data",
url="http://github.com/malarinv/jasper-asr",
author="Malar Kannan",
author_email="malarkannan.invention@gmail.com",
license="MIT",
install_requires=[
"nemo_toolkit[asr] @ git+https://github.com/NVIDIA/NeMo.git@09e3ba4dfe333f86d6c5c1048e07210924294be9#egg=nemo_toolkit"
],
packages=["."],
entry_points={"console_scripts": ["jasper_transcribe = jasper.__main__:main"]},
zip_safe=False,
)