Results 3 issues of pyxiea

I am trying to figure out the implementation of coverage mechanism, and after debug for a while, I still cannot understand why is the procedure of producing coverage vector in...

https://github.com/graykode/nlp-tutorial/blob/cb4881ebf6683dc6970c53a2cf50d5fd01edf118/4-3.Bi-LSTM(Attention)/Bi-LSTM(Attention)-Torch.py#L50 Hi, this repo is awesome, but there might be something wrong in the code above. According to the comment above, this snippet intends to change a tensor from shape...

1. 我的开发环境 64位Linux, JDK1.8 2. 使用的项目版本 直接在项目主页下载最新的(19-01-18)zip并解压得到 3. 我的操作以及遇到的问题 我在NLPIR-master/NLPIR SDK/NLPIR-ICTCLAS/projects目录下找到了ICTCLAS_Java,将其导入IDE,并往Data文件夹导入了最新的NLPIR.user,且NlpirTest.java中的测试均已通过; 但是,在实际处理一个字符串时遇到了问题,NlpirMethod.NLPIR_WordFreqStat()方法卡死,无法返回。 经过检查,这个字符串含有特殊的Unicode字符(Unicode编码为200B),删除之后即可正常运行 4. 如何重现此bug 在任意测试字符串中加入"\u200B",传入NlpirMethod.NLPIR_WordFreqStat()方法,都会导致此bug 例如如下代码: ```java String s=NlpirMethod.NLPIR_WordFreqStat(" YouTube精彩视频的秒拍视频\u200B\u200B"); System.out.println(s); ```