this post was submitted on 26 Feb 2024
1472 points (94.9% liked)

Microblog Memes

5402 readers
3084 users here now

A place to share screenshots of Microblog posts, whether from Mastodon, tumblr, ~~Twitter~~ X, KBin, Threads or elsewhere.

Created as an evolution of White People Twitter and other tweet-capture subreddits.

Rules:

  1. Please put at least one word relevant to the post in the post title.
  2. Be nice.
  3. No advertising, brand promotion or guerilla marketing.
  4. Posters are encouraged to link to the toot or tweet etc in the description of posts.

Related communities:

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] Barbarian@sh.itjust.works 2 points 6 months ago* (last edited 6 months ago) (2 children)

~~I get the sentiment, but it's a bad example. Transformer models don't recognize images in any useful way that could be fed to other systems.~~ They also don't have any capability of actual understanding or context. Heavily simplifying here, tokenisation of inputs allows them to group clusters of letters together into tokens, so when it receives tokens it can spit out whatever the training data says it should.

~~The only actual things that are improving greatly here which could be used in different systems are natural language processing, natural language output and visual output.~~

EDIT: Crossed out stuff that is wrong.

[–] MrConfusion@lemmy.world 11 points 6 months ago (1 children)

Well, this is simply incorrect. And confidently incorrect at that.

Vision transformers (ViT) is an important branch of computer vision models that apply transformers to image analysis and detection tasks. They perform very well. The main idea is the same, by tokenizing the input image into smaller chunks you can apply the same attention mechanism as in NLP transformer models.

ViT models were introduced in 2020 by Dosovitsky et. al, in the hallmark paper "An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale" (https://arxiv.org/abs/2010.11929). A work that has received almost 30000 academic citations since its publication.

So claiming transformers only improve natural language and vision output is straight up wrong. It is also widely used in visual analysis including classification and detection.

[–] Barbarian@sh.itjust.works 1 points 6 months ago (1 children)

Thank you for the correction. So hypothetically, with millions of hours of GoPro footage from the scuttle crew, and if we had some futuristic supercomputer that could crunch live data from a standard definition camera and output decisions, we could hook that up to a Boston dynamics style robot and run one replaced member of the crew?

[–] Stovetop@lemmy.world 1 points 6 months ago

And such is the march of progress.

[–] GBU_28@lemm.ee 8 points 6 months ago* (last edited 6 months ago) (1 children)

Huh? Image ai to semantic formating, then consumption is trivial now

[–] Barbarian@sh.itjust.works -3 points 6 months ago* (last edited 6 months ago) (2 children)

Could you give me an example that uses live feeds of video data, or feeds the output to another system? As far as I'm aware (I could be very wrong! Not an expert), the only things that come close to that are things like OCR systems and character recognition. Describing in machine-readable actionable terms what's happening in an image isn't a thing, as far as I know.

[–] GBU_28@lemm.ee 8 points 6 months ago* (last edited 6 months ago) (1 children)

No live video no, that didn't seem the topic

But if you had the horsepower, I don't think it's impossible based on what I've worked with. It's just about snipping and distributing the images, from a bottleneck standpoint

[–] Barbarian@sh.itjust.works -2 points 6 months ago* (last edited 6 months ago)

No live videos

Well, that'd be a prerequisite to a transformer model making decisions for a ship scuttling robot, hence why I brought it up.

[–] FooBarrington@lemmy.world 3 points 6 months ago

Describing in machine-readable actionable terms what's happening in an image isn't a thing, as far as I know.

It is. That's actually the basis of multimodal transformers - they have a shared embedding space for multiple modes of data (e.g. text and images). If you encode data and take those embeddings, you suddenly have a vector describing the contents of your input.