Merge pull request #40 from Bobholamovic/credit

Add credits
own
yzl19940819 3 years ago committed by GitHub
commit d20e0780ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      paddlers/custom_models/cd/models/dsifn.py
  2. 2
      paddlers/custom_models/cd/models/snunet.py
  3. 2
      paddlers/custom_models/cd/models/unet_ef.py
  4. 2
      paddlers/custom_models/cd/models/unet_siamconc.py
  5. 2
      paddlers/custom_models/cd/models/unet_siamdiff.py

@ -12,6 +12,9 @@
# See the License for the specific language governing permissions and
# 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.nn as nn
import paddle.nn.functional as F

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

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

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

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

Loading…
Cancel
Save