Instructions to use furaidosu/rtmi-krea2t with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Inference
- Notebooks
- Google Colab
- Kaggle
rtmi-krea2t
LoRA para Krea-2-Turbo, entrenado originalmente en ModelScope (tostiok/rtmi-krea2t).
Checkpoint step 6000: rtmi-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/rtmi-krea2t", weight_name="rtmi-krea2t_c1-st6000.safetensors")
pipe.to("cuda")
image = pipe("tu prompt acá", num_inference_steps=8, guidance_scale=0.0).images[0]