* Don't reset model state and feature extractor on endpointing * support passing decoding_method from commandline * Add modified_beam_search to Python API * fix C API example * Fix style issues
17 lines
357 B
C++
17 lines
357 B
C++
// sherpa-onnx/python/csrc/display.h
|
|
//
|
|
// Copyright (c) 2023 Xiaomi Corporation
|
|
|
|
#ifndef SHERPA_ONNX_PYTHON_CSRC_DISPLAY_H_
|
|
#define SHERPA_ONNX_PYTHON_CSRC_DISPLAY_H_
|
|
|
|
#include "sherpa-onnx/python/csrc/sherpa-onnx.h"
|
|
|
|
namespace sherpa_onnx {
|
|
|
|
void PybindDisplay(py::module *m);
|
|
|
|
} // namespace sherpa_onnx
|
|
|
|
#endif // SHERPA_ONNX_PYTHON_CSRC_DISPLAY_H_
|