DALL‐E3관련 SDXL LoRA 테스트 - 100-hours-a-week/16-Hot6-wiki GitHub Wiki

DALL-E3관련 SDXL LoRA 테스트

DALL-E3 HuggingFace에 있는 모델로 테스트를 진행하였습니다.

  • from diffusers import DiffusionPipeline
    
    pipe = DiffusionPipeline.from_pretrained("fluently/Fluently-XL-v2")
    pipe.load_lora_weights("ehristoforu/dalle-3-xl-v2")
    pipe = pipe.to("cuda")
    

    기본적인 모던한 이미지 생성 프롬프트

    Unknown

    prompt = "A modern Scandinavian desk setup: light oak wood desk against matte white wall, soft morning sunlight casting gentle       shadows, 45° eye-level view, potted succulent on left, wireless keyboard & mouse centered, hidden cables, 8K photorealistic"
    
    image = pipe(prompt).images[0]
    

    미니멀리스트 홈 오피스 데스크테리어

    Unknown-2

    prompt = "Create a photorealistic minimalist home-office desk: A clean white table topped with a large grey felt desk pad; On the pad, a curved monitor on a modern stand and a laptop on a matching grey riser; Above the monitor, a slim LED lamp bar casting soft light; To the side, a small succulent in a simple grey pot; All cables neatly hidden; Screen shows a dark code editor window with a tiny forest wallpaper; Color scheme: white, grey, black, with a splash of green; No background clutter or other people; Symmetric, ultra‑detailed. <lora:dalle-3-xl-lora-v2:0.8>"
    
    image = pipe(prompt).images[0]
    

    Cozy 홈 오피스 데스크테리어

    Unknown-3

    prompt = "Cozy photorealistic modern home‑office desk with a clean white tabletop and grey felt mat, a sleek curved monitor on a minimalist stand and matching laptop riser, a slim LED lamp bar overhead, a single succulent in a grey pot, all cables hidden, screen showing a dark code editor with a faint forest wallpaper, neutral palette of white, grey and black with green accent, warm natural lighting <lora:dalle-3-xl-lora-v2:0.8>"
    
    image = pipe(prompt).images[0]
    

내일 살펴볼 사항

  • LoRA 관련해서 학습 진행 중 내일 테스트 해볼 예정