728x90 분류 전체보기194 c++ : send wav data with curl #include #include #include #include static size_t WriteCallback(void *contents, size_t size, size_t nmemb, void *userp) { ((std::string*)userp)->append((char*)contents, size * nmemb); return size * nmemb; } int main(void) { std::string contents; std::ifstream in("test2.wav", std::ios::in | std::ios::binary); if (in) { in.seekg(0, std::ios::end); contents.resize(in.tellg()); in.seekg(0, std::ios:.. 2019. 10. 3. STT AM / LM model AM : Acoustic Model 음향 모델(음성 데이터) pcm LM : Language Model 언어 모델(코퍼스 데이터) text 모델개선시 : 레시피변경/ g2p 변경/ 전처리 소음제거/ 후처리 테이블 특정단어 통일화 2019. 10. 2. github에 contribute 하기 Fork it Create your feature branch (git checkout -b my-new-feature) Commit your changes (git commit -am 'Add some feature') Push to the branch (git push origin my-new-feature) Create new Pull Request 2019. 9. 4. arm64에 conda 설치하기 wget https://github.com/jjhelmus/berryconda/releases/download/v2.0.0/Berryconda3-2.0.0-Linux-armv7l.sh chmod +x Berryconda3-2.0.0-Linux-armv7l.sh ./Berryconda3-2.0.0-Linux-armv7l.sh -p /usr/local -b -s -u or wget https://gitlab.com/herren.lmc/mirror/raw/master/Berryconda3-2.0.0-Linux-armv7l.sh chmod +x Berryconda3-2.0.0-Linux-armv7l.sh ./Berryconda3-2.0.0-Linux-armv7l.sh -p /usr/local -b -s -u 2019. 8. 16. 이전 1 ··· 22 23 24 25 26 27 28 ··· 49 다음 728x90