nielsr HF Staff commited on
Commit
7c65e9a
·
verified ·
1 Parent(s): d0f708a

Add pipeline tag and library_name to model card

Browse files

This pull request enhances the model card by:
- Adding `pipeline_tag: image-to-image` to improve discoverability for users searching for image-to-image models on the Hugging Face Hub (e.g., https://huggingface.co/models?pipeline_tag=image-to-image).
- Specifying `library_name: keras` based on evidence in `config.json` and GitHub repository tags, which will enable an automated code snippet for Keras users to easily get started with the model.

These updates will make the model more accessible and easier to use for the community.

Files changed (1) hide show
  1. README.md +3 -0
README.md CHANGED
@@ -1,7 +1,10 @@
1
  ---
2
  paper: https://arxiv.org/abs/2508.17326
3
  code: https://github.com/tristan-deep/semantic-diffusion-echo-dehazing
 
 
4
  ---
 
5
  Score-based generative diffusion model trained on the [DehazeEcho2025 dataset](https://dehazingecho2025.grand-challenge.org/).
6
  Used in the [_Semantic Diffusion Posterior Sampling for Cardiac Ultrasound Dehazing_](https://arxiv.org/abs/2508.17326) paper.
7
  See the [GitHub repository](https://github.com/tristan-deep/semantic-diffusion-echo-dehazing) for the codebase and more info.
 
1
  ---
2
  paper: https://arxiv.org/abs/2508.17326
3
  code: https://github.com/tristan-deep/semantic-diffusion-echo-dehazing
4
+ pipeline_tag: image-to-image
5
+ library_name: keras
6
  ---
7
+
8
  Score-based generative diffusion model trained on the [DehazeEcho2025 dataset](https://dehazingecho2025.grand-challenge.org/).
9
  Used in the [_Semantic Diffusion Posterior Sampling for Cardiac Ultrasound Dehazing_](https://arxiv.org/abs/2508.17326) paper.
10
  See the [GitHub repository](https://github.com/tristan-deep/semantic-diffusion-echo-dehazing) for the codebase and more info.