Improve model card: Add Diffusers library name and project page link
Browse filesThis PR improves the model card by:
* Adding `library_name: diffusers` to the metadata, as the inference snippet utilizes `diffusers.utils.load_image`.
* Integrating the project page link (`https://gojasper.github.io/latent-bridge-matching/`) into the model card content, making it easier for users to find additional information.
The existing arXiv paper link has been kept as per the documentation guidelines.
README.md
CHANGED
|
@@ -1,17 +1,19 @@
|
|
| 1 |
---
|
| 2 |
-
license: cc-by-nc-4.0
|
| 3 |
base_model:
|
| 4 |
- stabilityai/stable-diffusion-xl-base-1.0
|
|
|
|
|
|
|
| 5 |
tags:
|
| 6 |
- image-to-image
|
| 7 |
inference: false
|
| 8 |
-
|
| 9 |
---
|
|
|
|
| 10 |
# ✨ Latent Bridge Matching for Image Relighting ✨
|
| 11 |
|
| 12 |
Latent Bridge Matching (LBM) is a new, versatile and scalable method proposed in [LBM: Latent Bridge Matching for Fast Image-to-Image Translation](https://arxiv.org/abs/2503.07535) that relies on Bridge Matching in a latent space to achieve fast image-to-image translation.
|
| 13 |
This model was trained to relight a foreground object according to a provided background.
|
| 14 |
-
See our [live demo](https://huggingface.co/spaces/jasperai/LBM_relighting)
|
| 15 |
|
| 16 |
<p align="center">
|
| 17 |
<img style="width:700px;" src="assets/relight.jpg">
|
|
|
|
| 1 |
---
|
|
|
|
| 2 |
base_model:
|
| 3 |
- stabilityai/stable-diffusion-xl-base-1.0
|
| 4 |
+
license: cc-by-nc-4.0
|
| 5 |
+
pipeline_tag: image-to-image
|
| 6 |
tags:
|
| 7 |
- image-to-image
|
| 8 |
inference: false
|
| 9 |
+
library_name: diffusers
|
| 10 |
---
|
| 11 |
+
|
| 12 |
# ✨ Latent Bridge Matching for Image Relighting ✨
|
| 13 |
|
| 14 |
Latent Bridge Matching (LBM) is a new, versatile and scalable method proposed in [LBM: Latent Bridge Matching for Fast Image-to-Image Translation](https://arxiv.org/abs/2503.07535) that relies on Bridge Matching in a latent space to achieve fast image-to-image translation.
|
| 15 |
This model was trained to relight a foreground object according to a provided background.
|
| 16 |
+
See our [live demo](https://huggingface.co/spaces/jasperai/LBM_relighting), official [Github repo](https://github.com/gojasper/LBM), and [project page](https://gojasper.github.io/latent-bridge-matching/).
|
| 17 |
|
| 18 |
<p align="center">
|
| 19 |
<img style="width:700px;" src="assets/relight.jpg">
|