Image-to-Image
Transformers
Safetensors
English
ditfuse
image-fusion
infrared-visible-fusion
multi-focus-fusion
multi-exposure-fusion
diffusion
transformer
multimodal
text-guided
Instructions to use lijiayangCS/DiTFuse with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use lijiayangCS/DiTFuse with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-to-image", model="lijiayangCS/DiTFuse")# Load model directly from transformers import DiTFuse model = DiTFuse.from_pretrained("lijiayangCS/DiTFuse", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Create config.jsonl
Browse files- config.jsonl +4 -0
config.jsonl
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": ["DiTFuse"],
|
| 3 |
+
"model_type": "ditfuse"
|
| 4 |
+
}
|