Skip to content

Commit 59e4748

Browse files
committed
Minor update (typo fix and mention another handy APIs)
1 parent 96a0527 commit 59e4748

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

slides/main.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -812,8 +812,9 @@ To get any .green[operations] or .green[tensors] that might *not* be stored expl
812812

813813
- `tf.get_default_graph()`: Get the current (default) graph
814814
- `G.get_operations()`: List all the TF ops in the graph
815-
- `G.get_operation_by_name(name)`: Retrieve a specific TF op in the graph
816-
.gray[(Q. How to convert an operation to a tensor?)]
815+
- `G.get_operation_by_name(name)`: Retrieve a specific TF op
816+
<br/> .gray[(Q. How to convert an operation to a tensor?)]
817+
- `G.get_tensor_by_name(name)`: Retrieve a specific tensor
817818
- `tf.get_collection(tf.GraphKeys.~~`): Get the collection of some tensors
818819
819820
To get .green[variables]:
@@ -1007,7 +1008,7 @@ def multilayer_perceptron(x):
10071008
* Interpose your debugging python code in the graph
10081009
10091010
1010-
.green[There is no silber bullet; one might need to choose the most convenient and suitable debugging tool, depending on the case]
1011+
.green[There is no silver bullet; one might need to choose the most convenient and suitable debugging tool, depending on the case]
10111012
10121013
---
10131014
template: inverse

0 commit comments

Comments
 (0)