Skip to content

Commit b541556

Browse files
committed
support tinycdv2
1 parent 2553efe commit b541556

File tree

4 files changed

+24
-2
lines changed

4 files changed

+24
-2
lines changed

configs/tinycd_v2/README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# TinyCDv2
2+
3+
TinyCDv2: A Lighter and Stronger Network for Remote Sensing Change Detection
4+
5+
## Introduction
6+
7+
[Code Snippet](https://github.com/likyoo/open-cd/blob/main/opencd/models/backbones/tinynet.py)
8+
9+
## Abstract
10+
11+
12+
### LEVIR-CD
13+
14+
| Method | Crop Size | Lr schd | #Param (M) | MACs (G) | Precision | Recall | F1-Score | IoU | config | download |
15+
| :--------: | :-------: | :-----: | :--------: | :------: | :-------: | :----: | :------: | :---: | :----------------------------------------------------------: | :------: |
16+
| 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) | |
17+
| 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) | |
18+
| 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) | |
19+
20+
21+
- All metrics are based on the category "change".
22+
- All scores are computed on the test set.
File renamed without changes.

configs/tinycd_v2/tinycd_v2_l_256x256_40k_levircd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
_base_ = ['./tinycd_v2_256x256_40k_levircd.py']
1+
_base_ = ['./tinycd_v2_b_256x256_40k_levircd.py']
22

33
model = dict(
44
backbone=dict(

configs/tinycd_v2/tinycd_v2_s_256x256_40k_levircd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
_base_ = ['./tinycd_v2_256x256_40k_levircd.py']
1+
_base_ = ['./tinycd_v2_b_256x256_40k_levircd.py']
22

33
model = dict(
44
backbone=dict(

0 commit comments

Comments
 (0)