├── .github └── workflows │ └── test.yml ├── .gitignore ├── .python-version ├── LICENSE ├── README.md ├── check.bash ├── check_fuse.bash ├── convert.py ├── pyproject.toml ├── run.py ├── test.py ├── uv.lock └── vv_core_inference ├── __init__.py ├── acoustic_feature_extractor.py ├── forwarder.py ├── full_context_label.py ├── make_decode_forwarder.py ├── make_yukarin_s_forwarder.py ├── make_yukarin_sa_forwarder.py ├── make_yukarin_sosoa_forwarder.py ├── onnx_decode_forwarder.py ├── onnx_yukarin_s_forwarder.py ├── onnx_yukarin_sa_forwarder.py └── utility.py /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiroshiba/vv_core_inference/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | model/ 2 | working/ 3 | __pycache__/ 4 | *.wav 5 | -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.11 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiroshiba/vv_core_inference/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiroshiba/vv_core_inference/HEAD/README.md -------------------------------------------------------------------------------- /check.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiroshiba/vv_core_inference/HEAD/check.bash -------------------------------------------------------------------------------- /check_fuse.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiroshiba/vv_core_inference/HEAD/check_fuse.bash -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiroshiba/vv_core_inference/HEAD/convert.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiroshiba/vv_core_inference/HEAD/pyproject.toml -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiroshiba/vv_core_inference/HEAD/run.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiroshiba/vv_core_inference/HEAD/test.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiroshiba/vv_core_inference/HEAD/uv.lock -------------------------------------------------------------------------------- /vv_core_inference/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vv_core_inference/acoustic_feature_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiroshiba/vv_core_inference/HEAD/vv_core_inference/acoustic_feature_extractor.py -------------------------------------------------------------------------------- /vv_core_inference/forwarder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiroshiba/vv_core_inference/HEAD/vv_core_inference/forwarder.py -------------------------------------------------------------------------------- /vv_core_inference/full_context_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiroshiba/vv_core_inference/HEAD/vv_core_inference/full_context_label.py -------------------------------------------------------------------------------- /vv_core_inference/make_decode_forwarder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiroshiba/vv_core_inference/HEAD/vv_core_inference/make_decode_forwarder.py -------------------------------------------------------------------------------- /vv_core_inference/make_yukarin_s_forwarder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiroshiba/vv_core_inference/HEAD/vv_core_inference/make_yukarin_s_forwarder.py -------------------------------------------------------------------------------- /vv_core_inference/make_yukarin_sa_forwarder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiroshiba/vv_core_inference/HEAD/vv_core_inference/make_yukarin_sa_forwarder.py -------------------------------------------------------------------------------- /vv_core_inference/make_yukarin_sosoa_forwarder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiroshiba/vv_core_inference/HEAD/vv_core_inference/make_yukarin_sosoa_forwarder.py -------------------------------------------------------------------------------- /vv_core_inference/onnx_decode_forwarder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiroshiba/vv_core_inference/HEAD/vv_core_inference/onnx_decode_forwarder.py -------------------------------------------------------------------------------- /vv_core_inference/onnx_yukarin_s_forwarder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiroshiba/vv_core_inference/HEAD/vv_core_inference/onnx_yukarin_s_forwarder.py -------------------------------------------------------------------------------- /vv_core_inference/onnx_yukarin_sa_forwarder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiroshiba/vv_core_inference/HEAD/vv_core_inference/onnx_yukarin_sa_forwarder.py -------------------------------------------------------------------------------- /vv_core_inference/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiroshiba/vv_core_inference/HEAD/vv_core_inference/utility.py --------------------------------------------------------------------------------