flaviagiammarino
commited on
Commit
•
8a6fc7f
1
Parent(s):
7ad223a
Update README.md
Browse files
README.md
CHANGED
@@ -1,17 +1,18 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
-
pipeline_tag: image-segmentation
|
4 |
tags:
|
5 |
- medical
|
6 |
-
|
7 |
-
- src: https://raw.githubusercontent.com/bowang-lab/MedSAM/main/assets/img_demo.png
|
8 |
-
example_title: "Abdomen CT Scan"
|
9 |
-
|
10 |
---
|
11 |
# Model Card for MedSAM
|
12 |
|
13 |
MedSAM is a fine-tuned version of [SAM](https://huggingface.co/docs/transformers/main/model_doc/sam) for the medical domain.
|
14 |
|
|
|
|
|
|
|
|
|
|
|
15 |
## Usage
|
16 |
|
17 |
```python
|
@@ -61,4 +62,19 @@ ax[1].set_title("MedSAM Segmentation")
|
|
61 |
ax[1].axis("off")
|
62 |
plt.show()
|
63 |
```
|
64 |
-
![results](scripts/results.png)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
|
|
3 |
tags:
|
4 |
- medical
|
5 |
+
- vision
|
|
|
|
|
|
|
6 |
---
|
7 |
# Model Card for MedSAM
|
8 |
|
9 |
MedSAM is a fine-tuned version of [SAM](https://huggingface.co/docs/transformers/main/model_doc/sam) for the medical domain.
|
10 |
|
11 |
+
## Model Description
|
12 |
+
|
13 |
+
- **Repository:** [MedSAM Official GitHub Repository](https://github.com/bowang-lab/medsam)
|
14 |
+
- **Paper:** [Segment Anything in Medical Images](https://arxiv.org/abs/2304.12306v1)
|
15 |
+
|
16 |
## Usage
|
17 |
|
18 |
```python
|
|
|
62 |
ax[1].axis("off")
|
63 |
plt.show()
|
64 |
```
|
65 |
+
![results](scripts/results.png)
|
66 |
+
|
67 |
+
## Additional Information
|
68 |
+
|
69 |
+
### Licensing Information
|
70 |
+
The authors have released the model code and pre-trained checkpoints under the [Apache License 2.0](https://github.com/bowang-lab/MedSAM/blob/main/LICENSE).
|
71 |
+
|
72 |
+
### Citation Information
|
73 |
+
```
|
74 |
+
@article{ma2023segment,
|
75 |
+
title={Segment anything in medical images},
|
76 |
+
author={Ma, Jun and Wang, Bo},
|
77 |
+
journal={arXiv preprint arXiv:2304.12306},
|
78 |
+
year={2023}
|
79 |
+
}
|
80 |
+
```
|