We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e60fe1d commit 6de262cCopy full SHA for 6de262c
doc/design/api.md
@@ -1,4 +1,4 @@
1
-# PaddlePaddle API
+# PaddlePaddle Design Doc
2
3
## Ingredients
4
@@ -15,7 +15,7 @@ Evaluator = {Model*, activations}
15
GradientMachine = {Evaluator*, gradients}
16
- backward
17
18
-Optimizer = {Model*, GradientMachine*}
+Optimizer = {GradientMachine*}
19
- train(cost, ...)
20
- update
21
- checkpoint
@@ -96,7 +96,7 @@ e.g., momentum and the Adam SGD algorithm. We make `train` calls
96
from `paddle.optimizer.SGD` by overrides only the `update` method.
97
98
99
-## Programming
+## Programming Interface
100
101
A fictive example of PaddlePaddle program looks like the following:
102
0 commit comments