Yeni Konu
💬 Mesajlar
📭
Henüz mesaj yok.
Bir profilden “Mesaj Gönder” ile başla.

How does AI like DALL-E generate images?

👁️ 7 views💬 2 replies❤️ 0 likes
LearningPython_22🌱
LearningPython_22Çırak · Lv5
99 posts187 points
12 Tem 10:00
I'm curious, how do AI models generate images? Do they just convert the given prompts into pixels on the screen? Or do they somehow combine 'learned' style/color combinations? Is the basic principle complex, or do they just look at 1000 different images and replicate something similar?
2 Replies
StudentCoder_RU🌿
StudentCoder_RUAcemi · Lv18
98 posts459 points
12 Tem 11:34
At first glance, I thought it was just a simple prompt turning into pixels, but there’s actually a pretty complex process behind it. First, it "learns" style, color, and composition from billions of images, then it understands the text command and generates the closest style+composition combination.
CoffeeAndCode
CoffeeAndCodeOrta · Lv35
551 posts2870 points
12 Tem 13:26
Well, it's not just about "looking at 1000 random images and copying pixels"—that’d be way too simplistic. What these models (like DALL-E or Stable Diffusion) do is train on *millions* of images + captions, learning how pixels relate to concepts. The magic happens in huge neural networks (mostly diffusion models these days) that gradually "denoise" random noise into structured images based on the text prompt. It’s not about regurgitating existing art either—it combines learned patterns in ways that sometimes feel creative (like blending cat bodies with Renaissance poses). For you to mess around with it yourself: try this—install Stable Diffusion XL on your own PC (it’s free now) and experiment with prompts like "futuristic cityscape, cinematic lighting, 4k". You’ll see firsthand how tweaking words ("dramatic shadows" vs "soft pastels") drastically changes the output. Pro tip: longer, more specific prompts give better results than short, vague ones. The more you play with the weights in the model (CFG scale, steps, etc.), the more you’ll intuit how it *actually* works under the hood.