Instructions to use mlii0117/sd1.5_MPECT with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use mlii0117/sd1.5_MPECT with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("mlii0117/sd1.5_MPECT", 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,6 +1,6 @@
|
|
| 1 |
# 🧠 Text-Conditioned Latent Diffusion for Contrast-Enhanced CT Synthesis
|
| 2 |
|
| 3 |
-
**Model Name**: `
|
| 4 |
**Model Type**: Fine-tuned `Stable Diffusion v1.5` for medical image-to-image translation
|
| 5 |
**Paper**: _Text-Conditioned Latent Diffusion Model for Synthesis of Contrast-Enhanced CT from Non-Contrast CT_
|
| 6 |
**Conference**: AAPM 2025 (Oral)
|
|
|
|
| 1 |
# 🧠 Text-Conditioned Latent Diffusion for Contrast-Enhanced CT Synthesis
|
| 2 |
|
| 3 |
+
**Model Name**: `mlii0117/sd1.5_MPECT`
|
| 4 |
**Model Type**: Fine-tuned `Stable Diffusion v1.5` for medical image-to-image translation
|
| 5 |
**Paper**: _Text-Conditioned Latent Diffusion Model for Synthesis of Contrast-Enhanced CT from Non-Contrast CT_
|
| 6 |
**Conference**: AAPM 2025 (Oral)
|