English
XavierJiezou commited on
Commit
e006916
1 Parent(s): 63a9590

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +45 -0
README.md ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ datasets:
4
+ - XavierJiezou/cloudseg-datasets
5
+ language:
6
+ - en
7
+ metrics:
8
+ - mean_iou
9
+ ---
10
+
11
+ # Cloudseg Models
12
+
13
+ This repository contains the pre-trained model weights for the [cloudseg](https://github.com/XavierJiezou/cloudseg).
14
+
15
+ ## Installation
16
+
17
+ ```bash
18
+ git clone https://huggingface.co/XavierJiezou/cloudseg-models
19
+ cd cloudseg-models
20
+ mkdir envs
21
+ tar -xzf envs.tar.gz -C envs
22
+ source envs/bin/activate
23
+ ```
24
+
25
+ ## Usage
26
+
27
+ ```bash
28
+ python app.py
29
+ ```
30
+
31
+ ## Citation
32
+
33
+ If you use our code or models in your research, please cite with:
34
+
35
+ ```bib
36
+ @misc{cloud-adapter,
37
+ title={Adapting Vision Foundation Models for Robust Cloud Segmentation in Remote Sensing Images},
38
+ author={Xuechao Zou and Shun Zhang and Kai Li and Shiying Wang and Junliang Xing and Lei Jin and Congyan Lang and Pin Tao},
39
+ year={2024},
40
+ eprint={2411.13127},
41
+ archivePrefix={arXiv},
42
+ primaryClass={cs.CV},
43
+ url={https://arxiv.org/abs/2411.13127},
44
+ }
45
+ ```