Skip to content

Commit

Permalink
add blank line at code block first line
Browse files Browse the repository at this point in the history
  • Loading branch information
SigureMo committed Nov 9, 2021
1 parent b822be3 commit 54d618e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions python/paddle/vision/models/resnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ class ResNet(nn.Layer):
Examples:
.. code-block:: python
import paddle
from paddle.vision.models import ResNet
from paddle.vision.models.resnet import BottleneckBlock, BasicBlock
Expand Down Expand Up @@ -303,6 +304,7 @@ def resnet18(pretrained=False, **kwargs):
Examples:
.. code-block:: python
import paddle
from paddle.vision.models import resnet18
Expand All @@ -329,6 +331,7 @@ def resnet34(pretrained=False, **kwargs):
Examples:
.. code-block:: python
import paddle
from paddle.vision.models import resnet34
Expand All @@ -355,6 +358,7 @@ def resnet50(pretrained=False, **kwargs):
Examples:
.. code-block:: python
import paddle
from paddle.vision.models import resnet50
Expand All @@ -381,6 +385,7 @@ def resnet101(pretrained=False, **kwargs):
Examples:
.. code-block:: python
import paddle
from paddle.vision.models import resnet101
Expand All @@ -407,6 +412,7 @@ def resnet152(pretrained=False, **kwargs):
Examples:
.. code-block:: python
import paddle
from paddle.vision.models import resnet152
Expand All @@ -433,6 +439,7 @@ def wide_resnet50_2(pretrained=False, **kwargs):
Examples:
.. code-block:: python
import paddle
from paddle.vision.models import wide_resnet50_2
Expand Down Expand Up @@ -460,6 +467,7 @@ def wide_resnet101_2(pretrained=False, **kwargs):
Examples:
.. code-block:: python
import paddle
from paddle.vision.models import wide_resnet101_2
Expand Down

0 comments on commit 54d618e

Please sign in to comment.