⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 isip_lm_tester.h

📁 这是一个从音频信号里提取特征参量的程序
💻 H
字号:
// file: $isip/util/speech/isip_lm_tester/isip_lm_tester.h//// make sure the file is included only once//#ifndef ISIP_LM_TESTER#define ISIP_LM_TESTER// isip include files//#include <FrontEnd.h>#include <CommandLine.h>#include <LanguageModel.h>#include <SearchLevel.h>#include <Trace.h>#include <DoubleLinkedList.h>#include <Math.h>#include <Random.h>#include <HistoryPool.h>#include <ContextPool.h>#include <File.h>#include <Sof.h>#include <TranscriptionDatabase.h>static const String PROG_NAME(L"isip_lm_tester");static const String PARAM_GRAMMAR_NAME(L"language_model");static const String PARAM_OUTPUT_NAME(L"output_file");static const String PARAM_DEBUG(L"debug_level");static const String PARAM_ID_LIST(L"list");static const String PARAM_RANDOM_SEED(L"seed");static const String PARAM_SENTENCE_NUMBER(L"sentence_count");static const String PARAM_SENTENCE_LENGTH(L"max_length");static const String PARAM_OUTPUT_LEVEL(L"level");static const String PARAM_OUTPUT_TYPE(L"type");static const String PARAM_DB_NAME(L"name");static const Long DEF_RANDOM_SEED = -1;static const Long DEF_SENTENCE_NUMBER = 1;static const Long DEF_SENTENCE_LENGTH = 100;static const Long DEF_OUTPUT_LEVEL = -1;static const File::TYPE DEF_OUTPUT_TYPE = File::TEXT;static const String EMPTY(String::NULL_STRING);// function declaration//void GenRandomSentences(long sent_len, Random& random_gen,			long output_level, Vector<SearchLevel>& search_levels,			String& sentence);// end of file//#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -