@@ -29,21 +29,28 @@ In this version, PaddlePaddle has made many optimizations to the APIs. You can r
2929| paddle.amp | Paddle automatic mixed precision strategy, including |
3030| | auto_cast, GradScaler, etc. |
3131+-------------------------------+-------------------------------------------------------+
32+ | paddle.autograd | Auto grad API, including backward, PyLayer, etc. |
33+ +-------------------------------+-------------------------------------------------------+
3234| paddle.callbacks | Paddle log callback APIs, including ModelCheckpoint, |
3335| | ProgBarLogger, etc. |
3436+-------------------------------+-------------------------------------------------------+
35- | paddle.nn | Networking-related APIs such as Linear, Conv2D, |
36- | | CrossEntropyLoss, RNN,and ReLU |
37+ | paddle.distributed | Distributed related basic APIs. |
3738+-------------------------------+-------------------------------------------------------+
38- | paddle.static | Basic framework related APIs under static graph, |
39- | | such as Variable, Program, Executor, etc. |
39+ | paddle.distributed.fleet | Distributed related high-level APIs. |
4040+-------------------------------+-------------------------------------------------------+
41- | paddle.static.nn | Special APIs for networking under static graph such |
42- | | as full connect layer fc and control flow |
43- | | while_loop/cond |
41+ | paddle.hub | Model extension API, including list, load, help, etc. |
4442+-------------------------------+-------------------------------------------------------+
45- | paddle.framework | Universal APIs and imprerative mode APIs such as |
46- | | to_variable and prepare_context |
43+ | paddle.io | APIs related to data input and output such as |
44+ | | Dataset, and DataLoader |
45+ +-------------------------------+-------------------------------------------------------+
46+ | paddle.jit | Dynamic graph to static graph APIs, including |
47+ | | to_static, ProgramTranslator, TracedLayer, etc. |
48+ +-------------------------------+-------------------------------------------------------+
49+ | paddle.metric | APIs related to evaluation computation such as |
50+ | | Accuracy and Auc. |
51+ +-------------------------------+-------------------------------------------------------+
52+ | paddle.nn | Networking-related APIs such as Linear, Conv2D, |
53+ | | CrossEntropyLoss, RNN,and ReLU, etc. |
4754+-------------------------------+-------------------------------------------------------+
4855| paddle.onnx | APIs related to convert paddle model to ONNX,such as |
4956| | export |
@@ -54,22 +61,22 @@ In this version, PaddlePaddle has made many optimizations to the APIs. You can r
5461| paddle.optimizer.lr | APIs related to learning rate decay, such as |
5562| | NoamDecay, StepDecay, PiecewiseDecay, etc. |
5663+-------------------------------+-------------------------------------------------------+
57- | paddle.metric | APIs related to evaluation computation such as |
58- | | Accuracy and Auc |
64+ | paddle.regularizer | Regularization APIs, including L1Decay, L2Decay, etc. |
5965+-------------------------------+-------------------------------------------------------+
60- | paddle.io | APIs related to data input and output such as |
61- | | Dataset, and DataLoader |
66+ | paddle.static | Basic framework related APIs under static graph, |
67+ | | such as Variable, Program, Executor, etc. |
68+ +-------------------------------+-------------------------------------------------------+
69+ | paddle.static.nn | Special APIs for networking under static graph such |
70+ | | as full connect layer fc and control flow |
71+ | | while_loop/cond |
6272+-------------------------------+-------------------------------------------------------+
63- | paddle.distributed | Distributed related basic APIs |
64- | | |
73+ | paddle.text | The NLP domain API currently includes data sets |
74+ | | related to the NLP domain, such as Imdb and Movielens. |
6575+-------------------------------+-------------------------------------------------------+
66- | paddle.distributed.fleet | Distributed related high-level APIs |
67- | | |
76+ | paddle.utils | Utils APIs, including CppExtension, CUDAExtension. |
6877+-------------------------------+-------------------------------------------------------+
6978| paddle.vision | Vision domain APIs such as datasets Cifar10, |
7079| | data processing ColorJitter, and commonly used models |
7180| | like resnet |
7281+-------------------------------+-------------------------------------------------------+
73- | paddle.text | The NLP domain API currently includes data sets |
74- | | related to the NLP domain, such as Imdb and Movielens.|
75- +-------------------------------+-------------------------------------------------------+
82+
0 commit comments