You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/dilated.rst
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,11 +4,13 @@
4
4
Dilated Networks
5
5
================
6
6
7
-
We provide correct dilated pre-trained ResNet and DenseNet for semantic segmentation.
8
-
For dilation of ResNet, we replace the stride of 2 Conv3x3 at begining of certain stage and update the dilation of the conv layers afterwards.
9
-
For dilation of DenseNet, we provide :class:`encoding.nn.DilatedAvgPool2d` that handles the dilation of the transition layers, then update the dilation of the conv layers afterwards.
7
+
We provide correct dilated pre-trained ResNet and DenseNet (stride of 8) for semantic segmentation.
8
+
For dilation of DenseNet, we provide :class:`encoding.nn.DilatedAvgPool2d`.
10
9
All provided models have been verified.
11
10
11
+
.. note::
12
+
13
+
This code is provided together with the paper (coming soon), please cite our work.
Copy file name to clipboardExpand all lines: docs/source/notes/compile.rst
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,9 +5,7 @@ Installing PyTorch-Encoding
5
5
Install from Source
6
6
-------------------
7
7
8
-
* Please follow the `PyTorch instructions <https://github.com/pytorch/pytorch#from-source>`_ to install PyTorch from Source to the ``$HOME`` directory (recommended). Or you can simply clone a copy to ``$HOME`` directory::
0 commit comments