This repository has been archived on 2025-08-26. You can view files and clone it, but cannot push or open issues or pull requests.
Files
enginex_bi_series-sherpa-onnx/sherpa-onnx/csrc/online-cnn-bilstm-model-meta-data.h
Fangjun Kuang 70568c2df7 Support Agglomerative clustering. (#1384)
We use the open-source implementation from
https://github.com/cdalitz/hclust-cpp
2024-09-29 23:44:29 +08:00

26 lines
625 B
C++

// sherpa-onnx/csrc/online-cnn-bilstm-model-meta-data.h
//
// Copyright (c) 2024 Jian You (jianyou@cisco.com, Cisco Systems)
#ifndef SHERPA_ONNX_CSRC_ONLINE_CNN_BILSTM_MODEL_META_DATA_H_
#define SHERPA_ONNX_CSRC_ONLINE_CNN_BILSTM_MODEL_META_DATA_H_
namespace sherpa_onnx {
struct OnlineCNNBiLSTMModelMetaData {
int32_t comma_id = -1;
int32_t period_id = -1;
int32_t quest_id = -1;
int32_t upper_id = -1;
int32_t cap_id = -1;
int32_t mix_case_id = -1;
int32_t num_cases = -1;
int32_t num_punctuations = -1;
};
} // namespace sherpa_onnx
#endif // SHERPA_ONNX_CSRC_ONLINE_CNN_BILSTM_MODEL_META_DATA_H_