├── .github └── workflows │ └── gigaam.yml ├── .gitignore ├── LICENSE ├── README.md ├── README_ru.md ├── assets ├── gigaam_scheme.svg └── sbs_results.png ├── colab_example.ipynb ├── evaluation.md ├── gigaam ├── __init__.py ├── decoder.py ├── decoding.py ├── encoder.py ├── model.py ├── onnx_utils.py ├── preprocess.py ├── utils.py └── vad_utils.py ├── requirements.txt ├── setup.py └── tests ├── test_batching.py ├── test_loading.py ├── test_longform.py ├── test_onnx.py └── test_reading.py /.github/workflows/gigaam.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salute-developers/GigaAM/HEAD/.github/workflows/gigaam.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | build 3 | *.egg-info 4 | *.wav 5 | .DS_Store 6 | *tmp* 7 | onnx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salute-developers/GigaAM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salute-developers/GigaAM/HEAD/README.md -------------------------------------------------------------------------------- /README_ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salute-developers/GigaAM/HEAD/README_ru.md -------------------------------------------------------------------------------- /assets/gigaam_scheme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salute-developers/GigaAM/HEAD/assets/gigaam_scheme.svg -------------------------------------------------------------------------------- /assets/sbs_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salute-developers/GigaAM/HEAD/assets/sbs_results.png -------------------------------------------------------------------------------- /colab_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salute-developers/GigaAM/HEAD/colab_example.ipynb -------------------------------------------------------------------------------- /evaluation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salute-developers/GigaAM/HEAD/evaluation.md -------------------------------------------------------------------------------- /gigaam/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salute-developers/GigaAM/HEAD/gigaam/__init__.py -------------------------------------------------------------------------------- /gigaam/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salute-developers/GigaAM/HEAD/gigaam/decoder.py -------------------------------------------------------------------------------- /gigaam/decoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salute-developers/GigaAM/HEAD/gigaam/decoding.py -------------------------------------------------------------------------------- /gigaam/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salute-developers/GigaAM/HEAD/gigaam/encoder.py -------------------------------------------------------------------------------- /gigaam/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salute-developers/GigaAM/HEAD/gigaam/model.py -------------------------------------------------------------------------------- /gigaam/onnx_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salute-developers/GigaAM/HEAD/gigaam/onnx_utils.py -------------------------------------------------------------------------------- /gigaam/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salute-developers/GigaAM/HEAD/gigaam/preprocess.py -------------------------------------------------------------------------------- /gigaam/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salute-developers/GigaAM/HEAD/gigaam/utils.py -------------------------------------------------------------------------------- /gigaam/vad_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salute-developers/GigaAM/HEAD/gigaam/vad_utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salute-developers/GigaAM/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salute-developers/GigaAM/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_batching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salute-developers/GigaAM/HEAD/tests/test_batching.py -------------------------------------------------------------------------------- /tests/test_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salute-developers/GigaAM/HEAD/tests/test_loading.py -------------------------------------------------------------------------------- /tests/test_longform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salute-developers/GigaAM/HEAD/tests/test_longform.py -------------------------------------------------------------------------------- /tests/test_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salute-developers/GigaAM/HEAD/tests/test_onnx.py -------------------------------------------------------------------------------- /tests/test_reading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salute-developers/GigaAM/HEAD/tests/test_reading.py --------------------------------------------------------------------------------