Add Python API for speech enhancement GTCRN models (#1978)

This commit is contained in:
Fangjun Kuang
2025-03-10 19:02:17 +08:00
committed by GitHub
parent 488a6e687c
commit 5d2d792b1d
12 changed files with 268 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
// sherpa-onnx/python/csrc/offline-speech-denoiser.h
//
// Copyright (c) 2025 Xiaomi Corporation
#ifndef SHERPA_ONNX_PYTHON_CSRC_OFFLINE_SPEECH_DENOISER_H_
#define SHERPA_ONNX_PYTHON_CSRC_OFFLINE_SPEECH_DENOISER_H_
#include "sherpa-onnx/python/csrc/sherpa-onnx.h"
namespace sherpa_onnx {
void PybindOfflineSpeechDenoiser(py::module *m);
}
#endif // SHERPA_ONNX_PYTHON_CSRC_OFFLINE_SPEECH_DENOISER_H_