File tree 1 file changed +57
-0
lines changed
1 file changed +57
-0
lines changed Original file line number Diff line number Diff line change 2
2
3
3
---
4
4
5
+ ** Main classes**
6
+
7
+ * tf.Graph\(\)
8
+ * tf.Operation\(\)
9
+ * tf.Tensor\(\)
10
+ * tf.Session\(\)
11
+
12
+ ** Some useful functions**
13
+
14
+ * tf.get\_ default\_ session\(\)
15
+ * tf.get\_ default\_ graph\(\)
16
+ * tf.reset\_ default\_ graph\(\)
17
+ * ops.reset\_ default\_ graph\(\)
18
+ * tf.device\( “/cpu:0”\)
19
+ * tf.name\_ scope\( value\)
20
+ * tf.convert\_ to\_ tensor\( value\)
21
+
22
+ ** TensorFlow Optimizers**
23
+
24
+ * GradientDescentOptimizer
25
+ * AdadeltaOptimizer
26
+ * AdagradOptimizer
27
+ * MomentumOptimizer
28
+ * AdamOptimizer
29
+ * FtrlOptimizer
30
+ * RMSPropOptimizer
31
+
32
+ ** Reduction**
33
+
34
+ * reduce\_ sum
35
+ * reduce\_ prod
36
+ * reduce\_ min
37
+ * reduce\_ max
38
+ * reduce\_ mean
39
+ * reduce\_ all
40
+ * reduce\_ any
41
+ * accumulate\_ n
42
+
43
+ ** Activation functions**
44
+
45
+ * tf.nn
46
+ * relu
47
+ * relu6
48
+ * elu
49
+ * softplus
50
+ * softsign
51
+ * dropout
52
+ * bias\_ add
53
+ * sigmoid
54
+ * tanh
55
+ * sigmoid\_ cross\_ entropy\_ with\_ logits
56
+ * softmax
57
+ * log\_ softmax
58
+ * softmax\_ cross\_ entropy\_ with\_ logits
59
+ * sparse\_ softmax\_ cross\_ entropy\_ with\_ logits
60
+ * weighted\_ cross\_ entropy\_ with\_ logits
61
+
5
62
# keras
6
63
7
64
You can’t perform that action at this time.
0 commit comments