Image-to-Image
Diffusers
Safetensors
MageFlowPipeline
image-editing
instruction-based-editing
diffusion
rectified-flow
mage-flow
Instructions to use SceneWorks/Mage-Flow-Edit-Base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use SceneWorks/Mage-Flow-Edit-Base 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("SceneWorks/Mage-Flow-Edit-Base", dtype=torch.bfloat16, device_map="cuda") prompt = "Turn this cat into a dog" 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
sc-15071: regenerate the q4 tier with the 8-bit precision floors
Browse filesThe previous q4 artifact was packed uniformly at 4 bits, which made the tier render a repeating tiled texture instead of the prompt. norm_out.linear (the output head's adaLN modulation) and the Qwen3-VL LM decoder layers are now packed at 8 bits; everything else is unchanged. q8 and bf16 are untouched.
q4/transformer/diffusion_pytorch_model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8bd2a9b361b74f2f14a6c30936fd0e5999d13ec8e7b8597fadab770f9e73a26c
|
| 3 |
+
size 2326259123
|