this post was submitted on 02 Aug 2026
172 points (99.4% liked)

News

38728 readers
1287 users here now

Welcome to the News community!

Rules:

1. Be civil


Attack the argument, not the person. No racism/sexism/bigotry. Good faith argumentation only. This includes accusing another user of being a bot or paid actor. Trolling is uncivil and is grounds for removal and/or a community ban. Do not respond to rule-breaking content; report it and move on.


2. All posts should contain a source (url) that is as reliable and unbiased as possible and must only contain one link.


Obvious biased sources will be removed at the mods’ discretion. Supporting links can be added in comments or posted separately but not to the post body. Sources may be checked for reliability using Wikipedia, MBFC, AdFontes, GroundNews, etc.


3. No bots, spam or self-promotion.


Only approved bots, which follow the guidelines for bots set by the instance, are allowed.


4. Post titles should be the same as the article used as source. Clickbait titles may be removed.


Posts which titles don’t match the source may be removed. If the site changed their headline, we may ask you to update the post title. Clickbait titles use hyperbolic language and do not accurately describe the article content. When necessary, post titles may be edited, clearly marked with [brackets], but may never be used to editorialize or comment on the content.


5. Only recent news is allowed.


Posts must be news from the most recent 30 days.


6. All posts must be news articles.


No opinion pieces, Listicles, editorials, videos, blogs, press releases, or celebrity gossip will be allowed. All posts will be judged on a case-by-case basis. Mods may use discretion to pre-approve videos or press releases from highly credible sources that provide unique, newsworthy content not available or possible in another format.


7. No duplicate posts.


If an article has already been posted, it will be removed. Different articles reporting on the same subject are permitted. If the post that matches your post is very old, we refer you to rule 5.


8. Misinformation is prohibited.


Misinformation / propaganda is strictly prohibited. Any comment or post containing or linking to misinformation will be removed. If you feel that your post has been removed in error, credible sources must be provided.


9. No link shorteners or news aggregators.


All posts must link to original article sources. You may include archival links in the post description. News aggregators such as Yahoo, Google, Hacker News, etc. should be avoided in favor of the original source link. Newswire services such as AP, Reuters, or AFP, are frequently republished and may be shared from other credible sources.


10. Don't copy entire article in your post body


For copyright reasons, you are not allowed to copy an entire article into your post body. This is an instance wide rule, that is strictly enforced in this community.

founded 3 years ago
MODERATORS
 

Despite a lawsuit from xAI, a Minnesota ban on apps that allow users to “nudify” images can move forward, according to NBC News. U.S. District Judge Donovan Frank’s ruling focused as much on the timing of xAI’s lawsuit as on the substance of the law itself. Frank wrote that xAI filed its request for a temporary restraining order “on July 29, 2026, nearly three months after the law was signed, and only three days before the law is set to take effect” on August 1.

you are viewing a single comment's thread
view the rest of the comments
[–] FiniteBanjo@feddit.online 2 points 1 week ago (1 children)

That's not how LLMs work, They don't "learn anatomy". They approximate the images they've seen before, simple as. Like cutting up strips of magazines and glueing them onto paper.

[–] riskable@programming.dev -1 points 1 week ago (1 children)

You are correct! Absolutely 100% accurate!

That is not how LLMs learn anatomy!

What does that have to do with AI image generation models though?

[–] FiniteBanjo@feddit.online 1 points 1 week ago (1 children)

Image generators are LLMs, with the Language part being loosely defined but that was already the case because they both tokenize everything and don't actually understand words to begin with.

[–] riskable@programming.dev 0 points 4 days ago (1 children)

No. LLMs and AI image models are fundamentally, a different technology. They use completely different mathematical models, data models, and target different platform spaces.

As a simple example, to train an LLM you need to feed it lots of text and not much else. To train an image model, you need to feed it billions of tagged images. That is, images that have every stupid little thing in the image "tagged" with a bounding box and text describing what's inside said bounding box.

Also, these terms might not mean anything to you, but LLMs use transformer decoders (autoregressive causal retention) while image models use diffusion networks. The way they work is different at a fundamental level. Text is 1-dimensional and an LLM acts as a word prediction machine whereas image models start with chaos (random garbage pixels) and refine it over and over again in n steps until the chaos starts looking like the prompt.

The way prompting works is also different.