Add Python API (#31)

This commit is contained in:
Fangjun Kuang
2023-02-19 19:36:03 +08:00
committed by GitHub
parent 8acc059b3f
commit ea09d5fbc5
51 changed files with 967 additions and 57 deletions

View File

@@ -0,0 +1,16 @@
// sherpa-onnx/python/csrc/features.h
//
// Copyright (c) 2023 Xiaomi Corporation
#ifndef SHERPA_ONNX_PYTHON_CSRC_FEATURES_H_
#define SHERPA_ONNX_PYTHON_CSRC_FEATURES_H_
#include "sherpa-onnx/python/csrc/sherpa-onnx.h"
namespace sherpa_onnx {
void PybindFeatures(py::module *m);
}
#endif // SHERPA_ONNX_PYTHON_CSRC_FEATURES_H_