Spaces:
Running
on
Zero
Running
on
Zero
update homepage and arxiv
Browse files
README.md
CHANGED
|
@@ -18,7 +18,7 @@ We provide two models:
|
|
| 18 |
- Marigold-IID-Appearance which predicts albedo, metallic and roughness
|
| 19 |
- Marigold-IID-Lighting which predicts albedo, diffuse shading and non-diffuse residual
|
| 20 |
|
| 21 |
-
Find out more in our
|
| 22 |
|
| 23 |
```
|
| 24 |
@InProceedings{ke2023repurposing,
|
|
@@ -27,4 +27,13 @@ Find out more in our CVPR 2024 paper titled ["Repurposing Diffusion-Based Image
|
|
| 27 |
booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
|
| 28 |
year={2024}
|
| 29 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30 |
```
|
|
|
|
| 18 |
- Marigold-IID-Appearance which predicts albedo, metallic and roughness
|
| 19 |
- Marigold-IID-Lighting which predicts albedo, diffuse shading and non-diffuse residual
|
| 20 |
|
| 21 |
+
Find out more in our paper titled ["Marigold: Affordable Adaptation of Diffusion-Based Image Generators for Image Analysis"](https://arxiv.org/abs/2505.09358)
|
| 22 |
|
| 23 |
```
|
| 24 |
@InProceedings{ke2023repurposing,
|
|
|
|
| 27 |
booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
|
| 28 |
year={2024}
|
| 29 |
}
|
| 30 |
+
|
| 31 |
+
@misc{ke2025marigold,
|
| 32 |
+
title={Marigold: Affordable Adaptation of Diffusion-Based Image Generators for Image Analysis},
|
| 33 |
+
author={Bingxin Ke and Kevin Qu and Tianfu Wang and Nando Metzger and Shengyu Huang and Bo Li and Anton Obukhov and Konrad Schindler},
|
| 34 |
+
year={2025},
|
| 35 |
+
eprint={2505.09358},
|
| 36 |
+
archivePrefix={arXiv},
|
| 37 |
+
primaryClass={cs.CV}
|
| 38 |
+
}
|
| 39 |
```
|
app.py
CHANGED
|
@@ -80,13 +80,13 @@ class MarigoldIIDApp(DualVisionApp):
|
|
| 80 |
gr.Markdown(
|
| 81 |
f"""
|
| 82 |
<p align="center">
|
| 83 |
-
<a title="Website" href="https://
|
| 84 |
<img src="https://img.shields.io/badge/%E2%99%A5%20Project%20-Website-blue">
|
| 85 |
</a>
|
| 86 |
<a title="diffusers" href="https://huggingface.co/docs/diffusers/using-diffusers/marigold_usage" target="_blank" rel="noopener noreferrer" style="display: inline-block;">
|
| 87 |
<img src="https://img.shields.io/badge/%F0%9F%A7%A8%20Read_diffusers-Tutorial-yellow?labelColor=green">
|
| 88 |
</a>
|
| 89 |
-
<a title="arXiv" href="https://arxiv.org/abs/
|
| 90 |
<img src="https://img.shields.io/badge/%F0%9F%93%84%20Read%20-Paper-AF3436">
|
| 91 |
</a>
|
| 92 |
<a title="Github" href="https://github.com/prs-eth/marigold" target="_blank" rel="noopener noreferrer" style="display: inline-block;">
|
|
|
|
| 80 |
gr.Markdown(
|
| 81 |
f"""
|
| 82 |
<p align="center">
|
| 83 |
+
<a title="Website" href="https://marigoldcomputervision.github.io/" target="_blank" rel="noopener noreferrer" style="display: inline-block;">
|
| 84 |
<img src="https://img.shields.io/badge/%E2%99%A5%20Project%20-Website-blue">
|
| 85 |
</a>
|
| 86 |
<a title="diffusers" href="https://huggingface.co/docs/diffusers/using-diffusers/marigold_usage" target="_blank" rel="noopener noreferrer" style="display: inline-block;">
|
| 87 |
<img src="https://img.shields.io/badge/%F0%9F%A7%A8%20Read_diffusers-Tutorial-yellow?labelColor=green">
|
| 88 |
</a>
|
| 89 |
+
<a title="arXiv" href="https://arxiv.org/abs/2505.09358" target="_blank" rel="noopener noreferrer" style="display: inline-block;">
|
| 90 |
<img src="https://img.shields.io/badge/%F0%9F%93%84%20Read%20-Paper-AF3436">
|
| 91 |
</a>
|
| 92 |
<a title="Github" href="https://github.com/prs-eth/marigold" target="_blank" rel="noopener noreferrer" style="display: inline-block;">
|