
Neil Zhu,简书ID Not_GOD,University AI 创始人 & Chief Scientist,致力于推进世界人工智能化进程。制定并实施 UAI 中长期增...
Neil Zhu,简书ID Not_GOD,University AI 创始人 & Chief Scientist,致力于推进世界人工智能化进程。制定并实施 UAI 中长期增...
Neil Zhu,简书ID Not_GOD,University AI 创始人 & Chief Scientist,致力于推进世界人工智能化进程。制定并实施 UAI 中长期增...
All code can be find here. Implementing Recurrent Neural Network from Scratch I’m assum...
全排列问题描述为:给定一串数字,生成所有可能的排列。本文给出两类,一种使用C++通过回溯算法,一种使用Scala通过递归来求解。 首先介绍使用Scala通过递归求解的方法,定...
下面给出一个Scala中while循环的例子: 虽然在实际中不建议这么来写。while在Scala中是一个关键字,但是我们可不可以用一个函数来定义while呢?参考如下: 这...
Use the priority queue to implement Huffman Tree, written in C++ and use STL.
Trie树的解释参见:http://blog.csdn.net/hguisu/article/details/8131559 下面是用C实现的代码 头文件: 源文件:
All code can be find here. Implementing Multiple Layer Neural Network from Scratch This...
Monads 带有map和flatMap方法的数据结构很常见。实际上,there’s a name that describes this class of a data s...
Case Class 当要定义复杂的数据类型时,可以使用Case classes。如下面所示,定义一个JSON数据表示: 通过Scala的case class可以抽象为: 所...
All code can be find here. Implementing Recurrent Neural Network from Scratch I’m assum...