Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
## Requirements
|
| 2 |
+
|
| 3 |
+
### Environment
|
| 4 |
+
|
| 5 |
+
- Python 3.8+
|
| 6 |
+
- PyTorch 2.0.1+
|
| 7 |
+
- CUDA 11.8+
|
| 8 |
+
- Ubuntu 22.04 or higher / Windows 10
|
| 9 |
+
|
| 10 |
+
### Installation
|
| 11 |
+
```bash
|
| 12 |
+
conda create --name rscd python=3.8
|
| 13 |
+
conda activate rscd
|
| 14 |
+
conda install pytorch==2.0.1 torchvision==0.15.2 torchaudio==2.0.2 pytorch-cuda=11.8 -c pytorch -c nvidia
|
| 15 |
+
pip install pytorch-lightning==2.0.5
|
| 16 |
+
pip install scikit-image==0.19.3 numpy==1.24.4
|
| 17 |
+
pip install torchmetrics==1.0.1
|
| 18 |
+
pip install -U catalyst==20.09
|
| 19 |
+
pip install albumentations==1.3.1
|
| 20 |
+
pip install einops==0.6.1
|
| 21 |
+
pip install timm==0.6.7
|
| 22 |
+
pip install addict==2.4.0
|
| 23 |
+
pip install soundfile==0.12.1
|
| 24 |
+
pip install ttach==0.0.3
|
| 25 |
+
pip install prettytable==3.8.0
|
| 26 |
+
pip install -U openmim
|
| 27 |
+
pip install triton==2.0.0
|
| 28 |
+
mim install mmcv
|
| 29 |
+
pip install -U fvcore
|
| 30 |
+
|
| 31 |
+
|
| 32 |
+
## Dataset Preparation
|
| 33 |
+
We evaluate our method on three public datasets: **LEVIR-CD**, **WHU-CD**, and **CLCD**.[Download](https://drive.google.com/drive/folders/1zxhJ7v3UPgNsKkdvkYCOW7DdKDAAy_ll) |
|