基础概念
深度学习和人工智能
开源深度学习框架
此处个人选择 Deeplearning4j。用什么框架区别并不大,静下心来学习原理才是重要的。
Deeplearning4j
Deeplearning4j is the first commercial-grade, open-source, distributed deep-learning library written for ...
if..else
if conditional [then]
code...
[elsif conditional [then]
code...]...
[else
code...]
end
通常我们省略保留字 then 。若想在一行内写出完整的 if 式,则必须以 then 隔开条件式和程式区块。如下所示:
if a == 4 then a = ...
类和对象
Define a class
在 Ruby 中,类总是以关键字 class 开始,后跟类的名称。类名的首字母应该大写。
class Customer
end
Var in class
局部变量
局部变量是在方法中定义的变量。局部变量在方法外是不可用的。局部变量以小写字母或 _ 开始
实例变量
实例变量可以跨任何特定...