Star_'s picture
1 73

Star_

Star512
ยท

AI & ML interests

None yet

Recent Activity

liked a model about 3 hours ago
google/gemma-3-27b-pt
liked a model about 3 hours ago
google/gemma-3-27b-it
liked a model 14 days ago
Undi95/MistralThinker-v1.1
View all activity

Organizations

None yet

Star512's activity

reacted to openfree's post with ๐Ÿš€๐Ÿค— about 2 months ago
view post
Post
2492
๐ŸŒŸ Creating Presidential Images with FLUX: A Guide ๐Ÿ‡ฐ๐Ÿ‡ท
Model Link: openfree/korea-president-yoon
Service Link: openfree/korea-president-yoon

Hello! Today we'll explore how to generate presidential images using the FLUX model!
๐Ÿ“ฑ Basic Settings

Base Model: black-forest-labs/FLUX.1-dev
LoRA: korea-president-yoon
License: flux-1-dev-non-commercial-license

๐ŸŽจ How to Use

Always include 'president yoon' in your prompts
Various scenarios available:

In a cafe setting
As a soldier
Participating in a marathon, etc.



๐Ÿ’ป Running the Code
pythonCopyfrom diffusers import AutoPipelineForText2Image
import torch

# Load FLUX model
pipeline = AutoPipelineForText2Image.from_pretrained(
'black-forest-labs/FLUX.1-dev',
torch_dtype=torch.bfloat16
).to('cuda')

# Apply LoRA weights
pipeline.load_lora_weights(
'openfree/korea-president-yoon',
weight_name='korea-president-yoon.safetensors'
)

# Generate and save image
image = pipeline('A person in a bustling cafe president yoon').images[0]
image.save("my_image.png")
๐Ÿ”ง Compatible Tools

ComfyUI
AUTOMATIC1111
SD.Next
Invoke AI

โœจ Tips and Notes

Available in Safetensors format
Download from Files & versions tab
For non-commercial use only

For more details, please refer to the Hugging Face documentation! Happy image generation! ๐ŸŽ‰
  • 1 reply
ยท