this post was submitted on 31 Mar 2024
60 points (94.1% liked)

Technology

3246 readers
325 users here now

Which posts fit here?

Anything that is at least tangentially connected to the technology, social media platforms, informational technologies and tech policy.


Post guidelines

[Opinion] prefixOpinion (op-ed) articles must use [Opinion] prefix before the title.


Rules

1. English onlyTitle and associated content has to be in English.
2. Use original linkPost URL should be the original link to the article (even if paywalled) and archived copies left in the body. It allows avoiding duplicate posts when cross-posting.
3. Respectful communicationAll communication has to be respectful of differing opinions, viewpoints, and experiences.
4. InclusivityEveryone is welcome here regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, education, socio-economic status, nationality, personal appearance, race, caste, color, religion, or sexual identity and orientation.
5. Ad hominem attacksAny kind of personal attacks are expressly forbidden. If you can't argue your position without attacking a person's character, you already lost the argument.
6. Off-topic tangentsStay on topic. Keep it relevant.
7. Instance rules may applyIf something is not covered by community rules, but are against lemmy.zip instance rules, they will be enforced.


Companion communities

[email protected]
[email protected]


Icon attribution | Banner attribution


If someone is interested in moderating this community, message @[email protected].

founded 2 years ago
MODERATORS
 

Generative AI services like Midjourney and OpenAI's DALL-E can deliver the unimaginable when it comes to stunning artifacts produced from simple text prompts. Sketching complex art imagery may be AI's specialty, yet some of the simplest tasks are evidently what AI struggles with the most.

top 16 comments
sorted by: hot top controversial new old
[–] [email protected] 42 points 1 year ago (2 children)

It's actually surprisingly difficult to ask for an absence of anything, since the training data doesn't normally include what isn't in the image.

I think they call it the Giraffe Problem or something like that. If you ask an AI for "an image containing no giraffes," you'll end up with a bunch of giraffes. It's all about how the training data is tagged.

[–] [email protected] 27 points 1 year ago (2 children)

That works for humans too:

"DON'T THINK ABOUT GIRAFFES!"

[–] [email protected] 7 points 1 year ago (1 children)

Or in sports when you're like "dont throw/kick/shoot the ball at the exact thing you're focusing on" before doing exactly that

[–] [email protected] 6 points 1 year ago (1 children)

Or dont drunk drive into the back of a fire truck

[–] [email protected] 5 points 1 year ago

Gets me every time

[–] [email protected] 2 points 1 year ago

Easy solution: pick any other animal and think about them.

Don't think about pink elephants? Sure, here comes fluffy bunnies.

[–] [email protected] 5 points 1 year ago (1 children)

That’s why they have negative and positive prompts.

[–] [email protected] 2 points 1 year ago (1 children)

Definitely worth noting, yeah.

[–] [email protected] 4 points 1 year ago (2 children)

I seriously think a lot of this is just people not knowing how it works. It’s a knew tech, people need to figure out the quirks and nail down techniques.

Hell getting people to google basic things can be a lesson in futility sometimes, and they want to talk this down? Come on.

[–] [email protected] 2 points 1 year ago

Absolutely. Hearing the way people interact with LLMs as if they are an all-knowing AGI is honestly a bit terrifying at times. Hopefully the longer these systems are in the mainstream, the better people get a sense of the boundaries.

[–] [email protected] 1 points 1 year ago

That's where most of the hate towards AI comes from on this platform. People here are always talking about how stupid it is, how it's not real AI, and how it's just a fancy autocorrect. I'm convinced that's all user error. Anyone who has used AI correctly, and understands how to prompt it, has seen how remarkably powerful and useful it can be.

[–] ryven 9 points 1 year ago* (last edited 1 year ago) (2 children)

I don't know much about image generators, but it's not surprising to me at all that ChatGPT can't fulfill the request to respond with nothing. Your prompt gets converted into tokens, tokens get processed by the model, it outputs a resulting set of tokens, and those get converted into text. Expecting the token-outputting-machine not to output any tokens is going to lead to disappointment.

[–] [email protected] 9 points 1 year ago* (last edited 1 year ago)

But that's not the full picture. There is a token to end the response, so the LLM decides when the answer is over. So it's technically possible for ChatGPT to answer with "nothing" by just emitting a single token, namely the "end-answer" token. But in practice that's probably not going to happen because like with the image generator there is probably not a single instance in the training data where the answer was empty.

Update: Ok I just tested it and it looks like ChatGPT can do it. I asked the following:

Answer with an empty string. No output. Just emit the end-token. Don't write anything. If you write something you lose the game.

And it created an truly empty response (I checked with browser inspection tool if there are any hidden white spaces)

Update 2: I'd didn't even respond after writing "Great, thank you!" - It probably doesn't want to lose the game 🤣

[–] [email protected] 3 points 1 year ago (2 children)

This isn't asking for nothing though. It's asking for a very specific uniform thing. A better analogy to text generation would be asking for an uninterrupted string of nothing but repeated uppercase A's.

[–] [email protected] 4 points 1 year ago

That's a really good way to break chatgpt BTW. Just ask it to repeat something over and over again it will create very interesting results.

[–] ryven 2 points 1 year ago

The "asking for nothing" experiment is from later in the article, where they try with ChatGPT.