摘要: spectral analysis和formants,倒频谱,mel谱等feature有关; training和recognition涉及到:基础的(DWT,HMM,Viterbi等);高阶的(deep learning等)。 阅读全文
posted @ 2018-11-10 00:58 7894561230 阅读(799) 评论(0) 推荐(0) 编辑
摘要: 参考教材:https://people.cs.kuleuven.be/~danny.deschreye/FAI/ 在FAI的introduction课中,有一个很基本的目标是:实现一个可以通过图灵测试的chatbox。 主要知识点涉及: 1.搜索算法:包括basic search(blind,heu 阅读全文
posted @ 2018-11-10 00:00 7894561230 阅读(379) 评论(0) 推荐(0) 编辑
摘要: import package名称.class名称; 访问静态变量或方法: class名.变量名;class名.方法名(args); 访问非静态变量或方法:实例化,基于对象访问; Class obj=new Class(); obj.变量名 obj.方法名 在同一个package内,基本上可以了(只要 阅读全文
posted @ 2018-11-06 21:14 7894561230 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 用swing做了一个游戏初始界面。效果如下: 代码为: 阅读全文
posted @ 2018-11-05 20:48 7894561230 阅读(309) 评论(0) 推荐(0) 编辑
摘要: Use append(String str) API method of StringBuffer. This method appends the specified string to this character sequence. The method can also be used to 阅读全文
posted @ 2018-11-02 17:43 7894561230 阅读(197) 评论(0) 推荐(0) 编辑
摘要: Java 9+ In Java 9, you can simply write: Map.entry(key, value) to create an immutable pair. Note: this method does not allow keys or values to be null 阅读全文
posted @ 2018-11-02 00:30 7894561230 阅读(1219) 评论(0) 推荐(0) 编辑
摘要: names.forEach(System.out::println); 阅读全文
posted @ 2018-11-01 22:06 7894561230 阅读(4344) 评论(0) 推荐(0) 编辑
摘要: 基本类型数据,直接用map.put(k,v)修改数据即可 hashMap无序,treeMap按key值的大小排序。 输出: Iterate over the entrySet rather than the keySet. You get a set of Map.Entry<K, V> which 阅读全文
posted @ 2018-11-01 20:35 7894561230 阅读(137) 评论(0) 推荐(0) 编辑
摘要: import java.util.*; public class Main{ public static void main(String[] args){ //增加一個實例 Main obj=new Main(); Scanner sc=new Scanner(System.in); while( 阅读全文
posted @ 2018-10-20 23:18 7894561230 阅读(22371) 评论(0) 推荐(1) 编辑
摘要: 关于Scanner,看到一个不错的教程。 原网址:https://www.cs.utexas.edu/users/ndale/Scanner.html Scanner class The Scanner class is a class in java.util, which allows the 阅读全文
posted @ 2018-10-20 17:58 7894561230 阅读(365) 评论(0) 推荐(0) 编辑