Instructions to use onkarsus13/ControlNet-Stable-Diffusion-3-Medium-Mask2MRI-AMOS with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use onkarsus13/ControlNet-Stable-Diffusion-3-Medium-Mask2MRI-AMOS with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("onkarsus13/ControlNet-Stable-Diffusion-3-Medium-Mask2MRI-AMOS", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,9 +1,15 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
-
language:
|
| 4 |
-
- en
|
| 5 |
library_name: diffusers
|
| 6 |
pipeline_tag: image-to-text
|
| 7 |
tags:
|
| 8 |
- medical
|
| 9 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
|
|
|
| 3 |
library_name: diffusers
|
| 4 |
pipeline_tag: image-to-text
|
| 5 |
tags:
|
| 6 |
- medical
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
This Model is first pre-trained on the ATLAS dataset, Then we further finetuned on the AMOS MRI set.
|
| 10 |
+
You can find the pre-trained model here
|
| 11 |
+
|
| 12 |
+
```
|
| 13 |
+
https://huggingface.co/onkarsus13/Semantic-Control-Stable-diffusion-3-M-Mask2CT-Atlas
|
| 14 |
+
```
|
| 15 |
+
|