2017 tensor flow dev summit (Sequence Models and the RNN API)
焔 襭襦 2017 2 22 ろ 8 覿 Maru180
GDG Seoul 譯殊 2017 Tensorflow Dev Summit Extended Seou
覦襯 讌
Sequence Models and the RNN API 襴 伎 螻旧
13. LinkedList
Sparse Matrix
Let us represent each column of a sparse matrix as a circularly linked
list with
a head node.
Also, let us represent each row of a sparse matrix similarly.
We will define two types of nodes: header node and element node.
Each column will have a head node (header) and element nodes
(element).
Each row will have a head node (header) and element nodes (element).
The list of head nodes (for all columns and all rows) will also have a
head
node, which is an element node type.
The head of head node will contain number of rows (row), number of columns
(col), and number of element nodes (value).