You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Administrator b3b33b54e5 2024.5.16 测试整体构建 1 year ago
..
base 2024.5.16 测试整体构建 1 year ago
decoder #第一次提交 1 year ago
fstbin #第一次提交 1 year ago
fstext 2024.5.16 测试整体构建 1 year ago
itf #第一次提交 1 year ago
lat 2024.5.16 测试整体构建 1 year ago
lm #第一次提交 1 year ago
lmbin #第一次提交 1 year ago
util #第一次提交 1 year ago
CMakeLists.txt 2024.5.16 测试整体构建 1 year ago
README.md #第一次提交 1 year ago

README.md

We use Kaldi decoder to implement TLG based language model integration, so we copied related files to this directory. The main changes are:

  1. To minimize the change, we use the same directories tree as Kaldi.

  2. We replace Kaldi log system with glog in the following way.

#define KALDI_WARN \
  google::LogMessage(__FILE__, __LINE__, google::GLOG_WARNING).stream()
#define KALDI_ERR \
  google::LogMessage(__FILE__, __LINE__, google::GLOG_ERROR).stream()
#define KALDI_INFO \
  google::LogMessage(__FILE__, __LINE__, google::GLOG_INFO).stream()
#define KALDI_VLOG(v) VLOG(v)

#define KALDI_ASSERT(condition) CHECK(condition)
  1. We lint all the files to satisfy the lint in WeNet.