Przeglądaj źródła

Merge pull request #40 from Bobholamovic/credit

Add credits
yzl19940819 3 lat temu
rodzic
commit
d20e0780ea

+ 3 - 0
paddlers/custom_models/cd/models/dsifn.py

@@ -12,6 +12,9 @@
 # See the License for the specific language governing permissions and
 # See the License for the specific language governing permissions and
 # limitations under the License.
 # limitations under the License.
 
 
+# Refer to
+# https://github.com/GeoZcx/A-deeply-supervised-image-fusion-network-for-change-detection-in-remote-sensing-images .
+
 import paddle
 import paddle
 import paddle.nn as nn
 import paddle.nn as nn
 import paddle.nn.functional as F
 import paddle.nn.functional as F

+ 2 - 0
paddlers/custom_models/cd/models/snunet.py

@@ -12,6 +12,8 @@
 # See the License for the specific language governing permissions and
 # See the License for the specific language governing permissions and
 # limitations under the License.
 # limitations under the License.
 
 
+# Refer to https://github.com/likyoo/Siam-NestedUNet .
+
 import paddle
 import paddle
 import paddle.nn as nn
 import paddle.nn as nn
 import paddle.nn.functional as F
 import paddle.nn.functional as F

+ 2 - 0
paddlers/custom_models/cd/models/unet_ef.py

@@ -12,6 +12,8 @@
 # See the License for the specific language governing permissions and
 # See the License for the specific language governing permissions and
 # limitations under the License.
 # limitations under the License.
 
 
+# Transferred from https://github.com/rcdaudt/fully_convolutional_change_detection/blob/master/unet.py .
+
 import paddle
 import paddle
 import paddle.nn as nn
 import paddle.nn as nn
 import paddle.nn.functional as F
 import paddle.nn.functional as F

+ 2 - 0
paddlers/custom_models/cd/models/unet_siamconc.py

@@ -12,6 +12,8 @@
 # See the License for the specific language governing permissions and
 # See the License for the specific language governing permissions and
 # limitations under the License.
 # limitations under the License.
 
 
+# Transferred from https://github.com/rcdaudt/fully_convolutional_change_detection/blob/master/siamunet_conc.py .
+
 import paddle
 import paddle
 import paddle.nn as nn
 import paddle.nn as nn
 import paddle.nn.functional as F
 import paddle.nn.functional as F

+ 2 - 0
paddlers/custom_models/cd/models/unet_siamdiff.py

@@ -12,6 +12,8 @@
 # See the License for the specific language governing permissions and
 # See the License for the specific language governing permissions and
 # limitations under the License.
 # limitations under the License.
 
 
+# Transferred from https://github.com/rcdaudt/fully_convolutional_change_detection/blob/master/siamunet_diff.py .
+
 import paddle
 import paddle
 import paddle.nn as nn
 import paddle.nn as nn
 import paddle.nn.functional as F
 import paddle.nn.functional as F