Instructions to use francipam/evospazio with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use francipam/evospazio with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("francipam/evospazio", 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
|
@@ -33,14 +33,18 @@ CFG, resolution, and LoRA strength**.
|
|
| 33 |
|
| 34 |
## Strenght 1.0
|
| 35 |
|
|
|
|
| 36 |

|
| 37 |
|
|
|
|
| 38 |

|
| 39 |
|
| 40 |
## Strenght 3.0
|
| 41 |
|
|
|
|
| 42 |

|
| 43 |
|
|
|
|
| 44 |

|
| 45 |
|
| 46 |
At LoRA strength = 1.0 the trained vehicle geometry is barely visible.
|
|
|
|
| 33 |
|
| 34 |
## Strenght 1.0
|
| 35 |
|
| 36 |
+
Base model generation
|
| 37 |

|
| 38 |
|
| 39 |
+
Distilled model generation
|
| 40 |

|
| 41 |
|
| 42 |
## Strenght 3.0
|
| 43 |
|
| 44 |
+
Base model generation
|
| 45 |

|
| 46 |
|
| 47 |
+
Distilled model generation
|
| 48 |

|
| 49 |
|
| 50 |
At LoRA strength = 1.0 the trained vehicle geometry is barely visible.
|