aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/g3doc/images/getting_started.dot
blob: a9cae6c4b16baad165119368ab393cf76b2bdcab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
digraph Dependencies {
  node [shape = oval];
  "predictions: MatMul()" -> "data: Concat()"
  "data: Concat()" -> data_left
  "data: Concat()" -> data_right
  "predictions: MatMul()" -> "weight_matrix: Reshape()"
  "weight_matrix: Reshape()" -> "new_weights: Add()"
  "new_weights: Add()" -> weights 
  "new_weights: Add()" -> deltas
  "update: Assign()" -> weights
  "update: Assign()" -> "new_weights: Add()"
  "InitializeAllVariables()" -> weights
  "InitializeAllVariables()" -> init_value
}