Skip to content

Commit

Permalink
support tinycdv2
Browse files Browse the repository at this point in the history
  • Loading branch information
likyoo committed Mar 2, 2023
1 parent 2553efe commit b541556
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 2 deletions.
22 changes: 22 additions & 0 deletions configs/tinycd_v2/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# TinyCDv2

TinyCDv2: A Lighter and Stronger Network for Remote Sensing Change Detection

## Introduction

[Code Snippet](https://github.com/likyoo/open-cd/blob/main/opencd/models/backbones/tinynet.py)

## Abstract


### LEVIR-CD

| Method | Crop Size | Lr schd | #Param (M) | MACs (G) | Precision | Recall | F1-Score | IoU | config | download |
| :--------: | :-------: | :-----: | :--------: | :------: | :-------: | :----: | :------: | :---: | :----------------------------------------------------------: | :------: |
| TinyCDv2-S | 256x256 | 40000 | 0.045 | 0.23 | 90.08 | 89.44 | 89.76 | 81.42 | [config](https://github.com/likyoo/open-cd/blob/main/configs/tinycd_v2/tinycd_v2_s_256x256_40k_levircd.py) | |
| TinyCDv2-B | 256x256 | 40000 | 0.116 | 0.58 | 91.75 | 90.17 | 90.95 | 83.41 | [config](https://github.com/likyoo/open-cd/blob/main/configs/tinycd_v2/tinycd_v2_b_256x256_40k_levircd.py) | |
| TinyCDv2-L | 256x256 | 40000 | 0.263 | 1.51 | 92.27 | 90.48 | 91.37 | 84.11 | [config](https://github.com/likyoo/open-cd/blob/main/configs/tinycd_v2/tinycd_v2_l_256x256_40k_levircd.py) | |


- All metrics are based on the category "change".
- All scores are computed on the test set.
2 changes: 1 addition & 1 deletion configs/tinycd_v2/tinycd_v2_l_256x256_40k_levircd.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
_base_ = ['./tinycd_v2_256x256_40k_levircd.py']
_base_ = ['./tinycd_v2_b_256x256_40k_levircd.py']

model = dict(
backbone=dict(
Expand Down
2 changes: 1 addition & 1 deletion configs/tinycd_v2/tinycd_v2_s_256x256_40k_levircd.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
_base_ = ['./tinycd_v2_256x256_40k_levircd.py']
_base_ = ['./tinycd_v2_b_256x256_40k_levircd.py']

model = dict(
backbone=dict(
Expand Down

0 comments on commit b541556

Please sign in to comment.