보통 3가지로 구분된다
1. 회귀: 시간에 기초해 시험 성적 예상
2. 이진 분류: 시간에 기초해 pass, fail로 구별
3. 다중 분류: 시간에 기초해 성적(a, b, c, d, e and f) 분류할 때
Scala(magnitude only)
s = 483
vector(magnitude and direction)
v = [1.1, 2.2, 3.3]
Matrix(table of numbers)
m = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
3-tensor(cube of numbers)
t = [[[2], [4], [6]], [[8], [10], [12]], [[14], [16], [18]]]
n-tensor
[] : 0-dimension
[D0] : 1-dimension
[D0, D1] : 2-dimension
[D0, D1, D2] : 3-dimension
[D0, D1, ...Dn-1] : n-dimension