Instructions to use furaidosu/patrick-corrigan-krea2t with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Inference
- Notebooks
- Google Colab
- Kaggle
patrick-corrigan-krea2t
LoRA para Krea-2-Turbo, entrenado originalmente en ModelScope (tostiok/patrick-corrigan-krea2t).
Checkpoint final del entrenamiento (step 6000): patrick-corrigan-krea2t_c1-st6000.safetensors.
Uso con diffusers
from diffusers import Krea2Pipeline
import torch
pipe = Krea2Pipeline.from_pretrained("krea/Krea-2-Turbo", torch_dtype=torch.bfloat16)
pipe.load_lora_weights("furaidosu/patrick-corrigan-krea2t", weight_name="patrick-corrigan-krea2t_c1-st6000.safetensors")
pipe.to("cuda")
image = pipe("tu prompt acá", num_inference_steps=8, guidance_scale=0.0).images[0]