Instructions to use marshallhamzah/EchoPath with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use marshallhamzah/EchoPath with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("marshallhamzah/EchoPath", torch_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,3 +1,23 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
datasets:
|
| 4 |
+
- marshallhamzah/Echopath
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
## Citation
|
| 10 |
+
|
| 11 |
+
<!-- If there is a paper or blog post introducing the dataset, the APA and Bibtex information for that should go in this section. -->
|
| 12 |
+
|
| 13 |
+
**BibTeX:**
|
| 14 |
+
|
| 15 |
+
@misc{muhammad2025echopathpathologyconditionedechovideo,
|
| 16 |
+
title={Echo-Path: Pathology-Conditioned Echo Video Generation},
|
| 17 |
+
author={Kabir Hamzah Muhammad and Marawan Elbatel and Yi Qin and Xiaomeng Li},
|
| 18 |
+
year={2025},
|
| 19 |
+
eprint={2509.17190},
|
| 20 |
+
archivePrefix={arXiv},
|
| 21 |
+
primaryClass={cs.CV},
|
| 22 |
+
url={https://arxiv.org/abs/2509.17190},
|
| 23 |
+
}
|