Instructions to use GDAOSU/Olbedo with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use GDAOSU/Olbedo with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("GDAOSU/Olbedo", 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
|
@@ -3,6 +3,8 @@ base_model:
|
|
| 3 |
- zheng95z/rgb-to-x
|
| 4 |
- prs-eth/marigold-iid-appearance-v1-1
|
| 5 |
- prs-eth/marigold-iid-lighting-v1-1
|
|
|
|
|
|
|
| 6 |
---
|
| 7 |
|
| 8 |
# Olbedo: An Albedo and Shading Aerial Dataset for Large-Scale Outdoor Environments
|
|
|
|
| 3 |
- zheng95z/rgb-to-x
|
| 4 |
- prs-eth/marigold-iid-appearance-v1-1
|
| 5 |
- prs-eth/marigold-iid-lighting-v1-1
|
| 6 |
+
datasets:
|
| 7 |
+
- GDAOSU/Olbedo
|
| 8 |
---
|
| 9 |
|
| 10 |
# Olbedo: An Albedo and Shading Aerial Dataset for Large-Scale Outdoor Environments
|