Views
No views yet
animated-style in your prompt to activate the style.animated-style a fox standing on a cliff overlooking the ocean, fluffy clouds in a bright blue sky| File | Notes |
|---|---|
animation-000004.safetensors | Epoch 4 checkpoint (early — more checkpoints coming) |
1import torch
2from diffusers import FluxPipeline
3
4pipe = FluxPipeline.from_pretrained("black-forest-labs/FLUX.1-schnell", torch_dtype=torch.bfloat16)
5pipe.load_lora_weights("yasaone1919/flux-schnell-stylized-animation-lora", weight_name="animation-000004.safetensors")
6pipe.to("cuda")
7
8image = pipe(
9 "animated-style a fox standing on a cliff overlooking the ocean",
10 num_inference_steps=4,
11 guidance_scale=0.0,
12).images[0]
13image.save("out.png")