How to use AIWarper/RubberCore1920sCartoonStyle with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("AIWarper/RubberCore1920sCartoonStyle") prompt = "RU883R style, soviet traditional children rear view walking next to a crop field, a dirt trail, a river, some snow patches on the ground, early winter, at a distance stands an old rusty broken giant mechanical quadripedal feet war machine with wires hanging and a artillery canon and green paint, bulky body, inspired by Jakub Rozalski. Vintage 1920s cartoon." image = pipe(prompt).images[0]
The community tab is the place to discuss and collaborate with the HF community!