Views
No views yet
runwayml/stable-diffusion-v1-5landscape, sms landscapeanimate_v1-000005.safetensors512x5122525165e-050.0001AdamW937509375metadata/animation_training_log.txtkohya_ss-based LoRA training workflow.metadata/painting_v1_20231211-043052.json, metadata/painting_script_caption.txt, and metadata/animation_training_log.txt for the preserved config snapshot and training notes.painting_v1 artifacts and this public checkpoint is not fully guaranteed.1import torch
2from diffusers import StableDiffusionPipeline
3
4pipe = StableDiffusionPipeline.from_pretrained(
5 "runwayml/stable-diffusion-v1-5",
6 torch_dtype=torch.float16,
7).to("cuda")
8
9pipe.load_lora_weights(
10 "J-YOON/animate-lora-sd1.5",
11 weight_name="animate_v1-000005.safetensors",
12)
13
14prompt = "sms landscape, evening sky over a quiet city, cinematic diary illustration"
15image = pipe(prompt, num_inference_steps=30, guidance_scale=7.0).images[0]
16image.save("animate_example.png")| Generated: Dog | Generated: Diary img2img |
![]() | ![]() |
| Reference: Dog | Reference: Rainy walk |
![]() | ![]() |