veryVANYA/ps1-style-flux
31107
PS1 Style Flux
<Gallery />
Model description
<p>works best when you include 'ps1 game screenshot' in prompt</p><p>late 90s/early 2000s ps1/n64 console graphics.</p><p>5000 steps </p><p>trained on 15 gpt4o captioned and adjusted ps1/n64 game screenshots using <a target="_blank" rel="ugc" href="https://github.com/ostris/ai-toolkit/tree/main">https://github.com/ostris/ai-toolkit/tree/main</a> </p>
Trigger words
You should use ps1 to trigger the image generation.
Download model
Weights for this model are available in Safetensors format.
Download them in the Files & versions tab.
Use it with the 🧨 diffusers library
from diffusers import AutoPipelineForText2Image
import torch
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
pipeline.load_lora_weights('veryVANYA/ps1-style-flux', weight_name='ps1_style_flux_v1.safetensors')
image = pipeline('`ps1`').images[0]For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers
