Spaces:
Running
on
T4
Running
on
T4
AAAAAAyq
commited on
Commit
•
7c3570f
1
Parent(s):
ddaa443
Update README.md
Browse files
README.md
CHANGED
@@ -10,4 +10,37 @@ pinned: false
|
|
10 |
license: apache-2.0
|
11 |
---
|
12 |
|
13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
license: apache-2.0
|
11 |
---
|
12 |
|
13 |
+
# Fast Segment Anything
|
14 |
+
|
15 |
+
Official PyTorch Implementation of the <a href="https://github.com/CASIA-IVA-Lab/FastSAM">.
|
16 |
+
|
17 |
+
The **Fast Segment Anything Model(FastSAM)** is a CNN Segment Anything Model trained by only 2% of the SA-1B dataset published by SAM authors. The FastSAM achieve a comparable performance with
|
18 |
+
the SAM method at **50× higher run-time speed**.
|
19 |
+
|
20 |
+
|
21 |
+
## License
|
22 |
+
|
23 |
+
The model is licensed under the [Apache 2.0 license](LICENSE).
|
24 |
+
|
25 |
+
|
26 |
+
## Acknowledgement
|
27 |
+
|
28 |
+
- [Segment Anything](https://segment-anything.com/) provides the SA-1B dataset and the base codes.
|
29 |
+
- [YOLOv8](https://github.com/ultralytics/ultralytics) provides codes and pre-trained models.
|
30 |
+
- [YOLACT](https://arxiv.org/abs/2112.10003) provides powerful instance segmentation method.
|
31 |
+
- [Grounded-Segment-Anything](https://huggingface.co/spaces/yizhangliu/Grounded-Segment-Anything) provides a useful web demo template.
|
32 |
+
|
33 |
+
## Citing FastSAM
|
34 |
+
|
35 |
+
If you find this project useful for your research, please consider citing the following BibTeX entry.
|
36 |
+
|
37 |
+
```
|
38 |
+
@misc{zhao2023fast,
|
39 |
+
title={Fast Segment Anything},
|
40 |
+
author={Xu Zhao and Wenchao Ding and Yongqi An and Yinglong Du and Tao Yu and Min Li and Ming Tang and Jinqiao Wang},
|
41 |
+
year={2023},
|
42 |
+
eprint={2306.12156},
|
43 |
+
archivePrefix={arXiv},
|
44 |
+
primaryClass={cs.CV}
|
45 |
+
}
|
46 |
+
```
|