Instructions to use NO8D/HighResolution with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use NO8D/HighResolution with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline from diffusers.utils import load_image # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("NO8D/HighResolution", dtype=torch.bfloat16, device_map="cuda") prompt = "High Resolution" input_image = load_image("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/cat.png") image = pipe(image=input_image, prompt=prompt).images[0] - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -27,7 +27,9 @@ base_model:
|
|
| 27 |
- black-forest-labs/FLUX.2-klein-4B
|
| 28 |
- black-forest-labs/FLUX.2-klein-9B
|
| 29 |
instance_prompt: High Resolution
|
| 30 |
-
license:
|
|
|
|
|
|
|
| 31 |
---
|
| 32 |
# HighResolution4B
|
| 33 |
|
|
|
|
| 27 |
- black-forest-labs/FLUX.2-klein-4B
|
| 28 |
- black-forest-labs/FLUX.2-klein-9B
|
| 29 |
instance_prompt: High Resolution
|
| 30 |
+
license: other
|
| 31 |
+
license_name: flux-1-dev-non-commercial-license
|
| 32 |
+
license_link: https://bfl.ai/legal/non-commercial-license-terms
|
| 33 |
---
|
| 34 |
# HighResolution4B
|
| 35 |
|