InPeerReview commited on
Commit
19cdfd2
Β·
verified Β·
1 Parent(s): 50754c6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -9
README.md CHANGED
@@ -102,12 +102,28 @@ python test_cd.py --config/levir/levir_test.json
102
 
103
  ```
104
  STNR-Det/
105
- β”œβ”€β”€ dataset/ # Dataset loading and preprocessing
106
- β”œβ”€β”€ model/ # Network architecture (STNR-Det)
107
- β”œβ”€β”€ utils/ # Utility functions
108
- β”œβ”€β”€ weight/ # Pretrained weights
109
- β”œβ”€β”€ main.py # Main entry point
110
- β”œβ”€β”€ requirements.txt # Dependencies
111
- └── README.md
112
-
113
- ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
102
 
103
  ```
104
  STNR-Det/
105
+ β”œβ”€β”€ config/ # Configuration files for training/testing
106
+ β”‚ β”œβ”€β”€ levir_cd_mamba.json
107
+ β”‚ β”œβ”€β”€ levir_test_cd_mamba.json
108
+ β”‚ └── ...
109
+ β”œβ”€β”€ core/ # Core functionality (e.g., models, loss functions)
110
+ β”‚ └── ...
111
+ β”œβ”€β”€ data/ # Data loading and preprocessing scripts
112
+ β”‚ └── ...
113
+ β”œβ”€β”€ misc/ # Miscellaneous utility scripts
114
+ β”‚ └── ...
115
+ β”œβ”€β”€ models/ # Model architectures and components
116
+ β”‚ └── ...
117
+ β”œβ”€β”€ .gitattributes # Git attributes for version control
118
+ β”œβ”€β”€ README.md # Project README (this file)
119
+ β”œβ”€β”€ requirement.txt # Python package dependencies
120
+ β”œβ”€β”€ test_cd.py # Testing script for the model
121
+ └── train_cd.py # Training script for the model
122
+ ```
123
+
124
+ ## πŸ™ Acknowledgement
125
+
126
+ We sincerely thank the following works for their contributions:
127
+
128
+ - [CDMamba](https://github.com/zmoka-zht/CDMamba) – A state-of-the-art method for remote sensing change detection that inspired and influenced parts of this work.
129
+ - [MambaDFuse](https://github.com/Lizhe1228/MambaDFuse) – A valuable method for feature fusion in remote sensing change detection that informed our approach.