If so-called AI is basically just Large Language Models, how come predictive text on my phone is bollock-useless?

Like if I type “I have two appl…” for example, often it will suggest “apple” singular instead of plural. Just a small example, but it is really bad at predicting which variant of a word should come after the previous

doublejay1999,
@doublejay1999@lemmy.world avatar

What the duck are you talking about?

asterfield,

LLMs like chatgpt take a wild amount of resources to run.

If you want something as smart as gpt3 and you want it to run at typing speeds, you’ll need a gaming PC running it.

People just recently managed to run gpt3 strength models at all on ordinary laptop hardware (slowly).

There is currently no way to run something gpt4 strength on ordinary consumer hardware (I’m just guessing but I think it takes a few hundred gb of VRAM to run)

squaresinger,

Now guess how it feels to type German with predictive text. Most of our words can have more than a dozen different word endings depending on time and how the word is used. And that’s not taking into account that we use compound words, which word prediction pretty much cannot predict and often doesn’t even know. So spell check will mark a legal compound word as misspelled, because it doesn’t understand the concept of compound words and doesn’t know this specific word combination.

To show what I mean, the term “Danube steam boat captain’s hat” becomes “DonauDampfSchiffKapitänsMütze” (I added capital letters which shouldn’t be there to show where the next word in the compound word begins).

While this is an extreme example, it’s pretty common for compound words to consist of 4-5 words.

agressivelyPassive,

And for some reason, some cases seem to be missing completely on my Android default keyboard. “untersuchst”, just like a bunch of second person cases for slightly unusual words is non existent.

squaresinger,

Yeah, noticed that too. This is really annoying.

Bigmouse,

My favourite: ‘geröntgt’ which is the second participle of ‘röntgen’ to x-ray someone. Never heard it pronounced correctly by a native speaker.

max,

Dutch also has the issue with the compound words. Autocorrect will often put a space in there, which is grammatically incorrect (and ugly). I feel like it’s at a point now where the incorrect space usage has become mainstream and might change the language rules. Oh well.

bioemerl,

If humans are just brains why are we smarter than dogs who also have brains?

Mr_Blott,

It’s “no stupid questions”, so “no cunty answers” thanks

bioemerl,

Well fuck you too pal, I thought it was a good analogy.

Mr_Blott,

It was, but the wrong community

Holyginz,

It wasn’t

Endorkend,
Endorkend avatar

This is an engine.

And this is an engine.

FilthyHookerSpit,

Succint

Lmaydev,

AI is a vast field. LLMs and neural networks are a small part of it.

LLMs are very expensive to run and a lot more complex than the markov chains often used for predictive text.

Predictive text just chooses a likely word based on what’s typed. This may be as simple as looking for words that start with what you’ve typed.

LLMs vectorise words and understand the complex relationship between vectors using many data points. So it would spot the word “two” and realise that plurals are used with it.

Dr_Cog,
@Dr_Cog@mander.xyz avatar

Predictive text also can vectorize words, but the number of vectors per word are much, much simpler.

sir_reginald, (edited )
@sir_reginald@lemmy.world avatar

LLMs are orders of magnitude more sophisticated and expensive to run. But don’t worry, I’m sure not so far in the future we will see smaller LLMs being run on device to be used as autocorrect.

Mr_Blott,

Can we have Scottish ones that know what a bawbag is, and when to put an “e” on the end of “shit”?

Thanks!

OpenStars,
OpenStars avatar

Think of it from the LLM's perspective - in the general pool you have common English, you have less common variations such as this, and then you have whatever the heck people like Kid Rock are doing...

Bawitdaba, da bang, da dang diggy diggy
Diggy, said the boogie, said up jump the boogie

pacoboyd,

It would have to be pretty specific and small to work on a phone and I think a side effect would be everyone’s conversations start to sound a lot more homogeneous.

sir_reginald,
@sir_reginald@lemmy.world avatar

you’re not wrong. Google just announced Gemini Nano that will run directly on the Pixel 8. Of course, it’s the first of it’s kind and will probably be slow and it’s not used as autocorrect yet. But just give it one year or two and it will probably be more common.

neptune,

Even give years ago, Google had a keyboard that skimmed your emails and texts to start a bank of words you use to supplement it’s dictionary for autocorrect. Like if you are a chemist and send an email that includes the word “tetrahydrafuran” every couple month, it would be nice for your phone keyboard to just have it in the dictionary.

pacoboyd,

SwiftKey does that if you give it access to your emails.

0x4E4F,
@0x4E4F@sh.itjust.works avatar

Phones don’t use LLM for predictive text. The algos are a lot less complex on phones.

Knusper,

I guess, the real question is: Could we be using (simplistic) LLMs on a phone for predictive text?

There’s some LLMs that can be run offline and which maybe wouldn’t use enormous amounts of battery. But I don’t know how good the quality of those is…

Munkisquisher,

A pre trained model isn’t going to learn how you type the more you use it. Though with Microsoft owning SwiftKey, I imagine they will try it soon

SidewaysHighways,

I was so heartbroken when I found out that Microsoft purchased Swiftkey. It was my favorite. Is there any way to still use it without Microsoft involved? Lawdhammercy

Mr_Blott,

That was my next question, thanks!

Didn’t think of battery use, makes sense

SpooksMcDoots,

Openhermes 2.5 Mistral 7b competes with LLMs that require 10x the resources. You could try it out on your phone.

0x4E4F,
@0x4E4F@sh.itjust.works avatar

I guess… why not… but the db is probably huge, like in the hundreds of GB (maybe even TB… who knows), can’t run that offline.

neptune,

I think apple has pitched this for a future iPhone, yes.

squaresinger,

They’ll probably have to offload that to a server farm in real time. That’s not gonna be easy.

bassomitron,

The kind of local/offline LLMs that would work on your phone would not be very good quality. There’s been amazing progress in quantization of LLMs to get them working on weaker GPUs with lower VRAM and CPUs, so maybe it’ll occur, but I’m not an expert.

I also don’t foresee them linking it up to a cloud-based LLM as that’d be a shit load of queries and extremely expensive.

astraeus,
@astraeus@programming.dev avatar

OpenAI is probably already handling a significant amount of queries, I think for daily use the LLM should simply initialize a word map based on user history and then update it semi-occasionally, like once a week or two. Most people don’t drastically change their vocabulary in the course of a few weeks

EatYouWell,

We’re talking about orders of magnitude more queries if we start offloading predective text like that.

Arthur,

iOS 17 uses a small gpt-2 based model for predictive text.

0x4E4F,
@0x4E4F@sh.itjust.works avatar

Hm, that’s interesting 👍.

Kichae,

The algorithms are the same. The models are different, being trained on a smaller data set.

0x4E4F,
@0x4E4F@sh.itjust.works avatar

Perhaps, I’m not a dev, especially not an iOS or an Android one.

FooBarrington,

No, the algorithms are not the same. Phones don’t use transformer models for text prediction, they use Markov chain-based approaches. Also, retraining of transformer models for individualized completion would be too expensive, whereas it’s basically free with Markov approaches. Where do you get these ideas?

Hanabie,
@Hanabie@sh.itjust.works avatar

You’re comparing apples to oranges.

CyanFen,

Because they’re using different tech. That’s like asking why do phone calls sound bad compared to voip calls. They’re just using different tech.

Candelestine, (edited )

Lawnmowers can’t keep up with Ferraris either, despite both being vehicles.

edit for wording

Knusper,

You’re in the No Stupid Questions community. Think about rule 7 in particular.

Candelestine,

Ah, thank you. I’ll edit.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • nostupidquestions@lemmy.world
  • modclub
  • DreamBathrooms
  • InstantRegret
  • magazineikmin
  • cubers
  • GTA5RPClips
  • thenastyranch
  • Youngstown
  • rosin
  • slotface
  • tacticalgear
  • ethstaker
  • kavyap
  • Durango
  • anitta
  • everett
  • Leos
  • provamag3
  • mdbf
  • ngwrru68w68
  • cisconetworking
  • tester
  • osvaldo12
  • megavids
  • khanakhh
  • normalnudes
  • JUstTest
  • lostlight
  • All magazines