Emma_zha

Those who turn back never reach the summit.

导航

2017年8月16日

摘要: I adb: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory sudo apt-get install lib32stdc+ 阅读全文

posted @ 2017-08-16 15:10 Emma_zha 阅读(84) 评论(0) 推荐(0) 编辑

摘要: What is RSS?RSS (Rich Site Summary) is a format for delivering regularly changing web content. Many news-related sites, weblogs and other online publi 阅读全文

posted @ 2017-08-16 15:09 Emma_zha 阅读(103) 评论(0) 推荐(0) 编辑

摘要: 1 利用动态规划,解决任何图中的最短路径问题。第i+1列节点的最短距离等于第i列j个节点的最短路径+第i列j个节点到第i+1列各个节点的距离的最小值。 2 理论: step1 初始化: δt(i) = πi*bi(O1), 1≤i≤N ψt(i) = 0 step2 归纳计算: δt(i)=max1 阅读全文

posted @ 2017-08-16 15:09 Emma_zha 阅读(61) 评论(0) 推荐(0) 编辑

摘要: 1 python script can be run in shell console while not in calling shell scripts wfile = codecs.open(new_dir + '/' + file, 'w', encoding="utf-8") attent 阅读全文

posted @ 2017-08-16 15:09 Emma_zha 阅读(110) 评论(0) 推荐(0) 编辑

摘要: 指两个字串之间,有一个转成另一个所需的最少编辑操作的次数。 算法过程 阅读全文

posted @ 2017-08-16 15:08 Emma_zha 阅读(160) 评论(0) 推荐(0) 编辑

摘要: 用 STL 里面堆算法实现的与真正的STL里面的 priority_queue用法相似的priority_queue #include <iostream> #include <algorithm> #include <vector> using namespace std; class prior 阅读全文

posted @ 2017-08-16 15:08 Emma_zha 阅读(107) 评论(0) 推荐(0) 编辑

摘要: 1 test data preparation 1> select representative data voice to match real application scenario test device :containing noise read by text : relatively 阅读全文

posted @ 2017-08-16 15:08 Emma_zha 阅读(196) 评论(0) 推荐(0) 编辑

摘要: 关闭选项卡 Ctrl+W 关闭当前窗口 alt + F4 alt + 空格 + c alt + 空格 + n 最小化窗口 alt + 空格 + x 最大化窗口 ALT+F4 关闭当前应用程序 ctrl + n 新建文件 ctrl + shift + n 新建文件夹 Windows键+M 最小化所有被 阅读全文

posted @ 2017-08-16 15:07 Emma_zha 阅读(119) 评论(0) 推荐(0) 编辑

摘要: ##20170801##notes for lec2-2.pdf about language modelEvaluating a Language ModelIntuition about PerplexityEvaluating N‐grams with Perplexity Sparsity 阅读全文

posted @ 2017-08-16 15:07 Emma_zha 阅读(128) 评论(0) 推荐(0) 编辑

摘要: python中调用已经写好的函数 1. 已写好的函数与当前文件同一路径 直接import model_name 或者 from model_name import * 2. 不同路径 可以在python搜寻的路径下加上要调用的文件路径,如sys.path.append(func_path) 或者sy 阅读全文

posted @ 2017-08-16 15:06 Emma_zha 阅读(191) 评论(0) 推荐(0) 编辑