提交 6cea69f9 编写于 作者: L LielinJiang

summary

上级 f3895645
============= =============
paddle.dataset fluid.dataset
============= =============
.. toctree:: .. toctree::
......
...@@ -5,6 +5,8 @@ fluid.dygraph ...@@ -5,6 +5,8 @@ fluid.dygraph
.. toctree:: .. toctree::
:maxdepth: 1 :maxdepth: 1
dygraph/amp_guard.rst
dygraph/AmpScaler.rst
dygraph/BackwardStrategy.rst dygraph/BackwardStrategy.rst
dygraph/BatchNorm.rst dygraph/BatchNorm.rst
dygraph/BilinearTensorProduct.rst dygraph/BilinearTensorProduct.rst
...@@ -25,18 +27,24 @@ fluid.dygraph ...@@ -25,18 +27,24 @@ fluid.dygraph
dygraph/enable_dygraph.rst dygraph/enable_dygraph.rst
dygraph/enabled.rst dygraph/enabled.rst
dygraph/ExponentialDecay.rst dygraph/ExponentialDecay.rst
dygraph/Flatten.rst
dygraph/grad.rst dygraph/grad.rst
dygraph/GroupNorm.rst dygraph/GroupNorm.rst
dygraph/GRUCell.rst
dygraph/GRUUnit.rst dygraph/GRUUnit.rst
dygraph/guard.rst dygraph/guard.rst
dygraph/InstanceNorm.rst dygraph/InstanceNorm.rst
dygraph/InverseTimeDecay.rst dygraph/InverseTimeDecay.rst
dygraph/jit.rst dygraph/jit.rst
dygraph/LambdaDecay.rst
dygraph/Layer.rst dygraph/Layer.rst
dygraph/LayerList.rst dygraph/LayerList.rst
dygraph/LayerNorm.rst dygraph/LayerNorm.rst
dygraph/Linear.rst dygraph/Linear.rst
dygraph/LinearLrWarmup.rst
dygraph/load_dygraph.rst dygraph/load_dygraph.rst
dygraph/LSTMCell.rst
dygraph/MultiStepDecay.rst
dygraph/NaturalExpDecay.rst dygraph/NaturalExpDecay.rst
dygraph/NCE.rst dygraph/NCE.rst
dygraph/no_grad.rst dygraph/no_grad.rst
...@@ -48,7 +56,6 @@ fluid.dygraph ...@@ -48,7 +56,6 @@ fluid.dygraph
dygraph/Pool2D.rst dygraph/Pool2D.rst
dygraph/PRelu.rst dygraph/PRelu.rst
dygraph/prepare_context.rst dygraph/prepare_context.rst
dygraph/ProgramTranslator.rst
dygraph/ReduceLROnPlateau.rst dygraph/ReduceLROnPlateau.rst
dygraph/save_dygraph.rst dygraph/save_dygraph.rst
dygraph/Sequential.rst dygraph/Sequential.rst
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
.. _api_fluid_dygraph_InstanceNorm: .. _api_fluid_dygraph_InstanceNorm:
InstanceNorm InstanceNorm
--------- ------------
.. autoclass:: paddle.fluid.dygraph.InstanceNorm .. autoclass:: paddle.fluid.dygraph.InstanceNorm
:members: :members:
......
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}` .. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY! !DO NOT EDIT THIS FILE MANUALLY!
.. _api_paddle_grad: .. _api_fluid_dygraph_grad:
grad grad
---- ----
.. autofunction:: paddle.grad .. autofunction:: paddle.fluid.dygraph.grad
:noindex: :noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}` .. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY! !DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_dygraph_no_grad:
no_grad
-------
.. autofunction:: paddle.fluid.dygraph.no_grad
:noindex:
...@@ -23,10 +23,12 @@ fluid ...@@ -23,10 +23,12 @@ fluid
fluid/default_startup_program.rst fluid/default_startup_program.rst
fluid/device_guard.rst fluid/device_guard.rst
fluid/disable_dygraph.rst fluid/disable_dygraph.rst
fluid/disable_imperative.rst
fluid/DistributeTranspiler.rst fluid/DistributeTranspiler.rst
fluid/DistributeTranspilerConfig.rst fluid/DistributeTranspilerConfig.rst
fluid/embedding.rst fluid/embedding.rst
fluid/enable_dygraph.rst fluid/enable_dygraph.rst
fluid/enable_imperative.rst
fluid/ExecutionStrategy.rst fluid/ExecutionStrategy.rst
fluid/Executor.rst fluid/Executor.rst
fluid/get_flags.rst fluid/get_flags.rst
...@@ -34,6 +36,7 @@ fluid ...@@ -34,6 +36,7 @@ fluid
fluid/gradients.rst fluid/gradients.rst
fluid/in_dygraph_mode.rst fluid/in_dygraph_mode.rst
fluid/is_compiled_with_cuda.rst fluid/is_compiled_with_cuda.rst
fluid/is_compiled_with_xpu.rst
fluid/load.rst fluid/load.rst
fluid/load_op_library.rst fluid/load_op_library.rst
fluid/LoDTensor.rst fluid/LoDTensor.rst
...@@ -53,3 +56,4 @@ fluid ...@@ -53,3 +56,4 @@ fluid
fluid/Tensor.rst fluid/Tensor.rst
fluid/Variable.rst fluid/Variable.rst
fluid/WeightNormParamAttr.rst fluid/WeightNormParamAttr.rst
fluid/XPUPlace.rst
======================= ================
paddle.framework paddle.framework
======================= ================
.. toctree:: .. toctree::
:maxdepth: 1 :maxdepth: 1
...@@ -8,17 +8,27 @@ paddle.framework ...@@ -8,17 +8,27 @@ paddle.framework
framework/append_backward.rst framework/append_backward.rst
framework/BuildStrategy.rst framework/BuildStrategy.rst
framework/CompiledProgram.rst framework/CompiledProgram.rst
framework/ComplexVariable.rst
framework/cpu_places.rst
framework/CPUPlace.rst framework/CPUPlace.rst
framework/create_global_var.rst framework/create_global_var.rst
framework/create_parameter.rst framework/create_parameter.rst
framework/cuda_pinned_places.rst
framework/cuda_places.rst
framework/CUDAPinnedPlace.rst framework/CUDAPinnedPlace.rst
framework/CUDAPlace.rst framework/CUDAPlace.rst
framework/default_main_program.rst framework/default_main_program.rst
framework/default_startup_program.rst framework/default_startup_program.rst
framework/device_guard.rst
framework/ExecutionStrateg y.rst framework/ExecutionStrateg y.rst
framework/Executor.rst framework/Executor.rst
framework/get_flags.rst
framework/global_scope.rst framework/global_scope.rst
framework/gradients.rst framework/gradients.rst
framework/in_dygraph_mode.rst
framework/is_compiled_with_cuda.rst
framework/is_compiled_with_xpu.rst
framework/load_op_library.rst
framework/name_scope.rst framework/name_scope.rst
framework/ParallelExecutor.rst framework/ParallelExecutor.rst
framework/ParamAttr.rst framework/ParamAttr.rst
...@@ -26,6 +36,8 @@ paddle.framework ...@@ -26,6 +36,8 @@ paddle.framework
framework/Program.rst framework/Program.rst
framework/program_guard.rst framework/program_guard.rst
framework/py_func.rst framework/py_func.rst
framework/require_version.rst
framework/scope_guard.rst framework/scope_guard.rst
framework/set_flags.rst
framework/Variable.rst framework/Variable.rst
framework/WeightNormParamAttr.rst framework/WeightNormParamAttr.rst
.. _api_framework_Program: .. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_framework_Program:
Program Program
------------------------------- -------
:doc_source: paddle.fluid.framework.Program
.. autoclass:: paddle.fluid.framework.Program
:members:
:inherited-members:
:noindex:
.. _api_framework_Variable: .. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_framework_Variable:
Variable Variable
------------------------------- --------
:doc_source: paddle.fluid.framework.Variable
.. autoclass:: paddle.fluid.framework.Variable
:members:
:inherited-members:
:noindex:
.. _api_framework_default_main_program: .. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_framework_default_main_program:
default_main_program default_main_program
------------------------------- --------------------
:doc_source: paddle.fluid.framework.default_main_program
.. autofunction:: paddle.fluid.framework.default_main_program
:noindex:
.. _api_framework_default_startup_program: .. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_framework_default_startup_program:
default_startup_program default_startup_program
------------------------------- -----------------------
:doc_source: paddle.fluid.framework.default_startup_program
.. autofunction:: paddle.fluid.framework.default_startup_program
:noindex:
.. _api_framework_name_scope: .. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_framework_name_scope:
name_scope name_scope
------------------------------- ----------
:doc_source: paddle.fluid.framework.name_scope
.. autofunction:: paddle.fluid.framework.name_scope
:noindex:
.. _api_framework_program_guard: .. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_framework_program_guard:
program_guard program_guard
------------------------------- -------------
:doc_source: paddle.fluid.framework.program_guard
.. autofunction:: paddle.fluid.framework.program_guard
:noindex:
...@@ -21,7 +21,7 @@ import contextlib ...@@ -21,7 +21,7 @@ import contextlib
import paddle.fluid as fluid import paddle.fluid as fluid
import paddle.tensor as tensor import paddle.tensor as tensor
import paddle.nn as nn import paddle.nn as nn
import paddle.complex as complex # import paddle.complex as complex
#import paddle.framework as framework #import paddle.framework as framework
def parse_arg(): def parse_arg():
......
#!/bin/bash #!/bin/bash
for module in layers dataset clip metrics executor initializer io nets optimizer profiler regularizer transpiler backward profiler unique_name dygraph framework # for module in layers dataset clip metrics executor initializer io nets optimizer profiler regularizer transpiler backward profiler unique_name dygraph framework
do # do
python gen_doc.py --module_name ${module} --module_prefix ${module} --output ${module} --output_name fluid --to_multiple_files True # python gen_doc.py --module_name ${module} --module_prefix ${module} --output ${module} --output_name fluid --to_multiple_files True
python gen_module_index.py ${module} fluid.${module} # python gen_module_index.py ${module} fluid.${module}
done # done
python gen_doc.py --module_name "" --module_prefix "" --output fluid --output_name fluid --to_multiple_files True # python gen_doc.py --module_name "" --module_prefix "" --output fluid --output_name fluid --to_multiple_files True
python gen_module_index.py fluid fluid # python gen_module_index.py fluid fluid
# tensor # # tensor
for module in math random stat linalg search # for module in math random stat linalg search
do # do
python gen_doc.py --module_name ${module} --module_prefix ${module} --output ${module} --output_name tensor --to_multiple_files True --output_dir tensor # python gen_doc.py --module_name ${module} --module_prefix ${module} --output ${module} --output_name tensor --to_multiple_files True --output_dir tensor
python gen_module_index.py tensor.${module} ${module} # python gen_module_index.py tensor.${module} ${module}
done # done
python gen_module_index.py tensor paddle.tensor # python gen_module_index.py tensor paddle.tensor
for module in math manipulation linalg # for module in math manipulation linalg
do # do
python gen_doc.py --module_name tensor.${module} --module_prefix tensor.${module} --output tensor/${module} --output_name complex --to_multiple_files True --output_dir complex # python gen_doc.py --module_name tensor.${module} --module_prefix tensor.${module} --output tensor/${module} --output_name complex --to_multiple_files True --output_dir complex
python gen_module_index.py complex.tensor.${module} ${module} # python gen_module_index.py complex.tensor.${module} ${module}
done # done
python gen_module_index.py complex.tensor tensor # python gen_module_index.py complex.tensor tensor
python gen_module_index.py complex paddle.complex # python gen_module_index.py complex paddle.complex
python gen_module_index.py framework paddle.framework # python gen_module_index.py framework paddle.framework
# nn # nn
for module in loss activation for module in layer #loss activation
do do
python gen_doc.py --module_name ${module} --module_prefix ${module} --output ${module} --output_name nn --to_multiple_files True --output_dir nn python gen_doc.py --module_name ${module} --module_prefix ${module} --output ${module} --output_name nn --to_multiple_files True --output_dir nn
python gen_module_index.py nn.${module} ${module} python gen_module_index.py nn.${module} ${module}
......
===============
paddle.incubate
===============
.. toctree::
:maxdepth: 1
incubate/hapi.rst
====
hapi
====
.. toctree::
:maxdepth: 1
hapi/utils.rst
===========
utils
===========
.. toctree::
:maxdepth: 1
utils/summary.rst
\ No newline at end of file
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_incubate_hapi_utils_summary:
summary
-------------------------------
.. autofunction:: paddle.incubate.hapi.utils.summary
:noindex:
...@@ -6,30 +6,32 @@ API Reference ...@@ -6,30 +6,32 @@ API Reference
:maxdepth: 1 :maxdepth: 1
../api_guides/index_en.rst ../api_guides/index_en.rst
dataset.rst complex.rst
declarative.rst declarative.rst
framework.rst framework.rst
imperative.rst imperative.rst
io.rst
metric.rst metric.rst
nn.rst nn.rst
optimizer.rst review_tmp.rst
tensor.rst tensor.rst
fluid.rst fluid.rst
backward.rst backward.rst
clip.rst clip.rst
data/data_reader.rst data/data_reader.rst
data/dataset.rst data/dataset.rst
dataset.rst
dygraph.rst dygraph.rst
executor.rst executor.rst
fluid.rst fluid.rst
initializer.rst initializer.rst
io.rst
layers.rst layers.rst
metrics.rst metrics.rst
nets.rst nets.rst
optimizer.rst
paddle.rst paddle.rst
profiler.rst profiler.rst
regularizer.rst regularizer.rst
transpiler.rst transpiler.rst
unique_name.rst unique_name.rst
review_tmp.rst incubate.rst
...@@ -16,6 +16,7 @@ fluid.initializer ...@@ -16,6 +16,7 @@ fluid.initializer
initializer/Normal.rst initializer/Normal.rst
initializer/NormalInitializer.rst initializer/NormalInitializer.rst
initializer/NumpyArrayInitializer.rst initializer/NumpyArrayInitializer.rst
initializer/set_global_initializer.rst
initializer/TruncatedNormal.rst initializer/TruncatedNormal.rst
initializer/TruncatedNormalInitializer.rst initializer/TruncatedNormalInitializer.rst
initializer/Uniform.rst initializer/Uniform.rst
......
======== ========
paddle.io fluid.io
======== ========
.. toctree:: .. toctree::
...@@ -14,6 +14,7 @@ paddle.io ...@@ -14,6 +14,7 @@ paddle.io
io/ComposeNotAligned.rst io/ComposeNotAligned.rst
io/DataLoader.rst io/DataLoader.rst
io/Dataset.rst io/Dataset.rst
io/default_collate_fn.rst
io/firstn.rst io/firstn.rst
io/get_program_parameter.rst io/get_program_parameter.rst
io/get_program_persistable_vars.rst io/get_program_persistable_vars.rst
...@@ -28,12 +29,9 @@ paddle.io ...@@ -28,12 +29,9 @@ paddle.io
io/PyReader.rst io/PyReader.rst
io/save.rst io/save.rst
io/save_inference_model.rst io/save_inference_model.rst
io/save_inference_model.rst
io/save_params.rst io/save_params.rst
io/save_persistables.rst io/save_persistables.rst
io/save_vars.rst io/save_vars.rst
io/set_program_state.rst io/set_program_state.rst
io/set_program_state.rst
io/shuffle.rst
io/shuffle.rst io/shuffle.rst
io/xmap_readers.rst io/xmap_readers.rst
...@@ -21,6 +21,7 @@ fluid.layers ...@@ -21,6 +21,7 @@ fluid.layers
layers/array_read.rst layers/array_read.rst
layers/array_write.rst layers/array_write.rst
layers/asin.rst layers/asin.rst
layers/Assert.rst
layers/assign.rst layers/assign.rst
layers/atan.rst layers/atan.rst
layers/auc.rst layers/auc.rst
...@@ -55,6 +56,7 @@ fluid.layers ...@@ -55,6 +56,7 @@ fluid.layers
layers/conv3d_transpose.rst layers/conv3d_transpose.rst
layers/cos.rst layers/cos.rst
layers/cos_sim.rst layers/cos_sim.rst
layers/cosh.rst
layers/cosine_decay.rst layers/cosine_decay.rst
layers/create_array.rst layers/create_array.rst
layers/create_global_var.rst layers/create_global_var.rst
...@@ -174,15 +176,16 @@ fluid.layers ...@@ -174,15 +176,16 @@ fluid.layers
layers/LSTMCell.rst layers/LSTMCell.rst
layers/margin_rank_loss.rst layers/margin_rank_loss.rst
layers/matmul.rst layers/matmul.rst
layers/matrix_nms.rst
layers/maxout.rst layers/maxout.rst
layers/mean.rst layers/mean.rst
layers/mean_iou.rst layers/mean_iou.rst
layers/merge_selected_rows.rst layers/merge_selected_rows.rst
layers/mish.rst
layers/mse_loss.rst layers/mse_loss.rst
layers/mul.rst layers/mul.rst
layers/multi_box_head.rst layers/multi_box_head.rst
layers/multiclass_nms.rst layers/multiclass_nms.rst
layers/matrix_nms.rst
layers/multiplex.rst layers/multiplex.rst
layers/MultivariateNormalDiag.rst layers/MultivariateNormalDiag.rst
layers/natural_exp_decay.rst layers/natural_exp_decay.rst
...@@ -229,6 +232,7 @@ fluid.layers ...@@ -229,6 +232,7 @@ fluid.layers
layers/reorder_lod_tensor_by_rank.rst layers/reorder_lod_tensor_by_rank.rst
layers/reshape.rst layers/reshape.rst
layers/resize_bilinear.rst layers/resize_bilinear.rst
layers/resize_linear.rst
layers/resize_nearest.rst layers/resize_nearest.rst
layers/resize_trilinear.rst layers/resize_trilinear.rst
layers/retinanet_detection_output.rst layers/retinanet_detection_output.rst
...@@ -276,6 +280,7 @@ fluid.layers ...@@ -276,6 +280,7 @@ fluid.layers
layers/sign.rst layers/sign.rst
layers/similarity_focus.rst layers/similarity_focus.rst
layers/sin.rst layers/sin.rst
layers/sinh.rst
layers/size.rst layers/size.rst
layers/slice.rst layers/slice.rst
layers/smooth_l1.rst layers/smooth_l1.rst
...@@ -312,6 +317,7 @@ fluid.layers ...@@ -312,6 +317,7 @@ fluid.layers
layers/topk.rst layers/topk.rst
layers/TrainingHelper.rst layers/TrainingHelper.rst
layers/transpose.rst layers/transpose.rst
layers/unbind.rst
layers/unfold.rst layers/unfold.rst
layers/Uniform.rst layers/Uniform.rst
layers/uniform_random.rst layers/uniform_random.rst
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
.. _api_fluid_layers_matrix_nms: .. _api_fluid_layers_matrix_nms:
matrix_nms matrix_nms
-------------- ----------
.. autofunction:: paddle.fluid.layers.matrix_nms .. autofunction:: paddle.fluid.layers.matrix_nms
:noindex: :noindex:
......
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_nn_BatchNorm: .. _api_nn_BatchNorm:
BatchNorm BatchNorm
------------------------------- ---------
:doc_source: paddle.fluid.dygraph.BatchNorm
.. autoclass:: paddle.nn.BatchNorm
:members:
:inherited-members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_nn_BilinearTensorProduct: .. _api_nn_BilinearTensorProduct:
BilinearTensorProduct BilinearTensorProduct
------------------------------- ---------------------
:doc_source: paddle.fluid.dygraph.BilinearTensorProduct
.. autoclass:: paddle.nn.BilinearTensorProduct
:members:
:inherited-members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_nn_ConstantPad1d: .. _api_nn_ConstantPad1d:
ConstantPad1d ConstantPad1d
------------------------------- -------------
:doc_source: paddle.nn.ConstantPad1d
.. autoclass:: paddle.nn.ConstantPad1d
:members:
:inherited-members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_nn_ConstantPad2d: .. _api_nn_ConstantPad2d:
ConstantPad2d ConstantPad2d
------------------------------- -------------
:doc_source: paddle.nn.ConstantPad2d
.. autoclass:: paddle.nn.ConstantPad2d
:members:
:inherited-members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_nn_ConstantPad3d: .. _api_nn_ConstantPad3d:
ConstantPad3d ConstantPad3d
------------------------------- -------------
:doc_source: paddle.nn.ConstantPad3d
.. autoclass:: paddle.nn.ConstantPad3d
:members:
:inherited-members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_nn_CosineSimilarity: .. _api_nn_CosineSimilarity:
CosineSimilarity CosineSimilarity
------------------------------- ----------------
:doc_source: paddle.nn.CosineSimilarity
.. autoclass:: paddle.nn.CosineSimilarity
:members:
:inherited-members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_nn_Embedding: .. _api_nn_Embedding:
Embedding Embedding
------------------------------- ---------
:doc_source: paddle.fluid.dygraph.Embedding
.. autoclass:: paddle.nn.Embedding
:members:
:inherited-members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_nn_GroupNorm: .. _api_nn_GroupNorm:
GroupNorm GroupNorm
------------------------------- ---------
:doc_source: paddle.fluid.dygraph.GroupNorm
.. autoclass:: paddle.nn.GroupNorm
:members:
:inherited-members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_nn_LayerNorm: .. _api_nn_LayerNorm:
LayerNorm LayerNorm
------------------------------- ---------
:doc_source: paddle.fluid.dygraph.LayerNorm
.. autoclass:: paddle.nn.LayerNorm
:members:
:inherited-members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_nn_Linear: .. _api_nn_Linear:
Linear Linear
------------------------------- ------
:doc_source: paddle.fluid.dygraph.Linear
.. autoclass:: paddle.nn.Linear
:members:
:inherited-members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_nn_Pool2D: .. _api_nn_Pool2D:
Pool2D Pool2D
------------------------------- ------
:doc_source: paddle.fluid.dygraph.Pool2D
.. autoclass:: paddle.nn.Pool2D
:members:
:inherited-members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_nn_ReflectionPad1d: .. _api_nn_ReflectionPad1d:
ReflectionPad1d ReflectionPad1d
------------------------------- ---------------
:doc_source: paddle.nn.ReflectionPad1d
.. autoclass:: paddle.nn.ReflectionPad1d
:members:
:inherited-members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_nn_ReflectionPad2d: .. _api_nn_ReflectionPad2d:
ReflectionPad2d ReflectionPad2d
------------------------------- ---------------
:doc_source: paddle.nn.ReflectionPad2d
.. autoclass:: paddle.nn.ReflectionPad2d
:members:
:inherited-members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_nn_ReplicationPad1d: .. _api_nn_ReplicationPad1d:
ReplicationPad1d ReplicationPad1d
------------------------------- ----------------
:doc_source: paddle.nn.ReplicationPad1d
.. autoclass:: paddle.nn.ReplicationPad1d
:members:
:inherited-members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_nn_ReplicationPad2d: .. _api_nn_ReplicationPad2d:
ReplicationPad2d ReplicationPad2d
------------------------------- ----------------
:doc_source: paddle.nn.ReplicationPad2d
.. autoclass:: paddle.nn.ReplicationPad2d
:members:
:inherited-members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_nn_ReplicationPad3d: .. _api_nn_ReplicationPad3d:
ReplicationPad3d ReplicationPad3d
------------------------------- ----------------
:doc_source: paddle.nn.ReplicationPad3d
.. autoclass:: paddle.nn.ReplicationPad3d
:members:
:inherited-members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_nn_SpectralNorm: .. _api_nn_SpectralNorm:
SpectralNorm SpectralNorm
------------------------------- ------------
:doc_source: paddle.fluid.dygraph.SpectralNorm
.. autoclass:: paddle.nn.SpectralNorm
:members:
:inherited-members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_nn_ZeroPad2d: .. _api_nn_ZeroPad2d:
ZeroPad2d ZeroPad2d
------------------------------- ---------
:doc_source: paddle.nn.ZeroPad2d
.. autoclass:: paddle.nn.ZeroPad2d
:members:
:inherited-members:
:noindex:
...@@ -8,7 +8,6 @@ activation ...@@ -8,7 +8,6 @@ activation
activation/ELU.rst activation/ELU.rst
activation/GELU.rst activation/GELU.rst
activation/Hardshrink.rst activation/Hardshrink.rst
activation/Tanh.rst
activation/Hardtanh.rst activation/Hardtanh.rst
activation/LogSigmoid.rst activation/LogSigmoid.rst
activation/PReLU.rst activation/PReLU.rst
...@@ -19,4 +18,5 @@ activation ...@@ -19,4 +18,5 @@ activation
activation/Softplus.rst activation/Softplus.rst
activation/Softshrink.rst activation/Softshrink.rst
activation/Softsign.rst activation/Softsign.rst
activation/Tanh.rst
activation/Tanhshrink.rst activation/Tanhshrink.rst
.. _api_nn_add_position_encoding:
add_position_encoding
-------------------------------
:doc_source: paddle.fluid.layers.add_position_encoding
.. _api_nn_continuous_value_model:
continuous_value_model
-------------------------------
:doc_source: paddle.fluid.layers.continuous_value_model
.. _api_nn_filter_by_instag:
filter_by_instag
-------------------------------
:doc_source: paddle.fluid.layers.filter_by_instag
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}` .. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY! !DO NOT EDIT THIS FILE MANUALLY!
.. _api_nn_functional_binary_cross_entropy: .. _api_nn_functional_loss_binary_cross_entropy:
binary_cross_entropy binary_cross_entropy
-------------------- --------------------
.. autofunction:: paddle.nn.functional.binary_cross_entropy .. autofunction:: paddle.nn.functional.loss.binary_cross_entropy
:noindex: :noindex:
.. _api_nn_functional_l1_loss: .. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_nn_functional_loss_l1_loss:
l1_loss l1_loss
------ -------
.. autoclass:: paddle.nn.functional.l1_loss .. autofunction:: paddle.nn.functional.loss.l1_loss
:members:
:inherited-members:
:noindex: :noindex:
.. _api_nn_functional_mse_loss: .. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_nn_functional_loss_mse_loss:
mse_loss mse_loss
------ --------
.. autoclass:: paddle.nn.functional.mse_loss .. autofunction:: paddle.nn.functional.loss.mse_loss
:members:
:inherited-members:
:noindex: :noindex:
.. _api_nn_functional_nll_loss: .. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_nn_functional_loss_nll_loss:
nll_loss nll_loss
------------------------------- --------
.. autoclass:: paddle.nn.functional.nll_loss .. autofunction:: paddle.nn.functional.loss.nll_loss
:members:
:inherited-members:
:noindex: :noindex:
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
.. _api_nn_loss_BCELoss: .. _api_nn_loss_BCELoss:
BCELoss BCELoss
------------------------------- -------
.. autoclass:: paddle.nn.loss.BCELoss .. autoclass:: paddle.nn.loss.BCELoss
:members: :members:
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
.. _api_nn_loss_NLLLoss: .. _api_nn_loss_NLLLoss:
NLLLoss NLLLoss
------------------------------- -------
.. autoclass:: paddle.nn.loss.NLLLoss .. autoclass:: paddle.nn.loss.NLLLoss
:members: :members:
......
.. _api_nn_multiclass_nms:
multiclass_nms
-------------------------------
:doc_source: paddle.fluid.layers.multiclass_nms
.. _api_nn_polygon_box_transform:
polygon_box_transform
-------------------------------
:doc_source: paddle.fluid.layers.polygon_box_transform
.. _api_nn_random_crop:
random_crop
-------------------------------
:doc_source: paddle.fluid.layers.random_crop
.. _api_nn_row_conv:
row_conv
-------------------------------
:doc_source: paddle.fluid.layers.row_conv
.. _api_nn_rpn_target_assign:
rpn_target_assign
-------------------------------
:doc_source: paddle.fluid.layers.rpn_target_assign
.. _api_nn_similarity_focus:
similarity_focus
-------------------------------
:doc_source: paddle.fluid.layers.similarity_focus
.. _api_nn_target_assign:
target_assign
-------------------------------
:doc_source: paddle.fluid.layers.target_assign
.. _api_nn_temporal_shift:
temporal_shift
-------------------------------
:doc_source: paddle.fluid.layers.temporal_shift
.. _api_nn_warpctc:
warpctc
-------------------------------
:doc_source: paddle.fluid.layers.warpctc
=============== ===============
paddle.optimizer fluid.optimizer
=============== ===============
.. toctree:: .. toctree::
...@@ -28,6 +28,7 @@ paddle.optimizer ...@@ -28,6 +28,7 @@ paddle.optimizer
optimizer/ModelAverage.rst optimizer/ModelAverage.rst
optimizer/Momentum.rst optimizer/Momentum.rst
optimizer/MomentumOptimizer.rst optimizer/MomentumOptimizer.rst
optimizer/PipelineOptimizer.rst
optimizer/RecomputeOptimizer.rst optimizer/RecomputeOptimizer.rst
optimizer/RMSPropOptimizer.rst optimizer/RMSPropOptimizer.rst
optimizer/SGD.rst optimizer/SGD.rst
......
...@@ -49,16 +49,16 @@ paddle.tensor ...@@ -49,16 +49,16 @@ paddle.tensor
tensor/has_inf.rst tensor/has_inf.rst
tensor/has_nan.rst tensor/has_nan.rst
tensor/increment.rst tensor/increment.rst
tensor/is_empty.rst
tensor/index_select.rst tensor/index_select.rst
tensor/is_empty.rst
tensor/isfinite.rst tensor/isfinite.rst
tensor/less_equal.rst tensor/less_equal.rst
tensor/less_than.rst tensor/less_than.rst
tensor/logic.rst
tensor/linalg.rst tensor/linalg.rst
tensor/linspace.rst tensor/linspace.rst
tensor/load.rst tensor/load.rst
tensor/log.rst tensor/log.rst
tensor/logic.rst
tensor/logical_and.rst tensor/logical_and.rst
tensor/logical_not.rst tensor/logical_not.rst
tensor/logical_or.rst tensor/logical_or.rst
...@@ -70,13 +70,12 @@ paddle.tensor ...@@ -70,13 +70,12 @@ paddle.tensor
tensor/min.rst tensor/min.rst
tensor/minimum.rst tensor/minimum.rst
tensor/mm.rst tensor/mm.rst
tensor/mul.rst
tensor/multiplex.rst tensor/multiplex.rst
tensor/norm.rst tensor/norm.rst
tensor/not_equal.rst tensor/not_equal.rst
tensor/numel.rst
tensor/ones.rst tensor/ones.rst
tensor/ones_like.rst tensor/ones_like.rst
tensor/numel.rst
tensor/pow.rst tensor/pow.rst
tensor/random.rst tensor/random.rst
tensor/rank.rst tensor/rank.rst
...@@ -111,8 +110,8 @@ paddle.tensor ...@@ -111,8 +110,8 @@ paddle.tensor
tensor/squeeze.rst tensor/squeeze.rst
tensor/stack.rst tensor/stack.rst
tensor/stanh.rst tensor/stanh.rst
tensor/std.rst
tensor/stat.rst tensor/stat.rst
tensor/std.rst
tensor/strided_slice.rst tensor/strided_slice.rst
tensor/sum.rst tensor/sum.rst
tensor/sums.rst tensor/sums.rst
......
...@@ -5,4 +5,13 @@ linalg ...@@ -5,4 +5,13 @@ linalg
.. toctree:: .. toctree::
:maxdepth: 1 :maxdepth: 1
linalg/bmm.rst
linalg/cholesky.rst
linalg/cross.rst
linalg/dist.rst linalg/dist.rst
linalg/dot.rst
linalg/histogram.rst
linalg/matmul.rst
linalg/norm.rst
linalg/t.rst
linalg/transpose.rst
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
.. _api_tensor_linalg_dist: .. _api_tensor_linalg_dist:
dist dist
-------- ----
.. autofunction:: paddle.tensor.linalg.dist .. autofunction:: paddle.tensor.linalg.dist
:noindex: :noindex:
......
...@@ -5,26 +5,68 @@ math ...@@ -5,26 +5,68 @@ math
.. toctree:: .. toctree::
:maxdepth: 1 :maxdepth: 1
math/abs.rst
math/acos.rst
math/add.rst math/add.rst
math/addcmul.rst math/addcmul.rst
math/addmm.rst math/addmm.rst
math/asin.rst
math/atan.rst math/atan.rst
math/clamp.rst math/ceil.rst
math/clip.rst
math/cos.rst
math/cosh.rst
math/cumsum.rst
math/div.rst
math/divide.rst math/divide.rst
math/elementwise_add.rst
math/elementwise_div.rst
math/elementwise_floordiv.rst
math/elementwise_mod.rst
math/elementwise_pow.rst
math/elementwise_sub.rst
math/elementwise_sum.rst
math/erf.rst
math/exp.rst
math/floor.rst
math/floor_divide.rst math/floor_divide.rst
math/remainder.rst
math/floor_mod.rst math/floor_mod.rst
math/mod.rst math/increment.rst
math/elementwise_sum.rst math/inverse.rst
math/isfinite.rst
math/isinf.rst
math/isnan.rst
math/kron.rst
math/log.rst
math/log1p.rst math/log1p.rst
math/logsumexp.rst math/logsumexp.rst
math/max.rst math/max.rst
math/maximum.rst
math/min.rst math/min.rst
math/minimum.rst
math/mm.rst math/mm.rst
math/mod.rst
math/mul.rst math/mul.rst
math/multiplex.rst
math/multiply.rst
math/pow.rst math/pow.rst
math/prod.rst
math/reciprocal.rst
math/reduce_max.rst
math/reduce_min.rst
math/reduce_prod.rst
math/reduce_sum.rst
math/remainder.rst
math/round.rst
math/rsqrt.rst
math/scale.rst
math/sign.rst math/sign.rst
math/sin.rst math/sin.rst
math/sinh.rst
math/sqrt.rst math/sqrt.rst
math/square.rst
math/stanh.rst
math/sum.rst math/sum.rst
math/sums.rst
math/tanh.rst math/tanh.rst
math/trace.rst
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}` .. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY! !DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_mul:
mul
---
.. autofunction:: paddle.tensor.math.mul
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}` .. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY! !DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_sign: .. _api_tensor_math_sign:
sign sign
------ ----
.. autofunction:: paddle.tensor.math.sign .. autofunction:: paddle.tensor.math.sign
:noindex: :noindex:
......
.. _api_tensor_cn_mul:
mul
-------------------------------
:doc_source: paddle.fluid.layers.mul
...@@ -5,10 +5,12 @@ random ...@@ -5,10 +5,12 @@ random
.. toctree:: .. toctree::
:maxdepth: 1 :maxdepth: 1
random/bernoulli.rst
random/normal.rst random/normal.rst
random/rand.rst random/rand.rst
random/randint.rst random/randint.rst
random/randn.rst random/randn.rst
random/randperm.rst random/randperm.rst
random/shuffle.rst
random/standard_normal.rst random/standard_normal.rst
random/uniform.rst random/uniform.rst
...@@ -8,3 +8,4 @@ uniform ...@@ -8,3 +8,4 @@ uniform
.. autofunction:: paddle.tensor.random.uniform .. autofunction:: paddle.tensor.random.uniform
:noindex: :noindex:
...@@ -10,3 +10,4 @@ fluid.transpiler ...@@ -10,3 +10,4 @@ fluid.transpiler
transpiler/HashName.rst transpiler/HashName.rst
transpiler/memory_optimize.rst transpiler/memory_optimize.rst
transpiler/release_memory.rst transpiler/release_memory.rst
transpiler/RoundRobin.rst
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册