IMO If you're into tech and still use Chrome*, that's on you. If you are not, you probably don't really care unless you need extra space on your PC. *Except in your job, since you probably obligated to use.
Switched from firefox few months ago, I don't like google, but firefox has only few percent of market share currenly, many pages simply do not work properly with it, plus it has bugs on macos (like onmousover stuff), which simply make it unusable. Safari is fine, but also many websites (which sometimes you need to use like banking or gov) are not tested on it. The overall browsers situation is less than ideal.
Google Chrome Installed a 4GB AI Model on Your PC
31–40 of 69 posts
Re: Google Chrome Installed a 4GB AI Model on Your PC
#32Any page can silently trigger an additional multi-gigabyte download for Chrome users by just calling this API: await LanguageModel.create() Since the model is installed once per browser, LanguageModel.availability() could probably also be used for fingerprinting.
This feature was massively bungled; I actually don't overall hate the idea of it (having a shared, pre-downloaded model that can run effectively from JS is kind of awesome versus sites downloading stuff into LocalStorage to use with hacked up wasm/webgl inference engines), but it really, really needed a permissions dialog and a proper anti-fingerprinting model.
Re: Google Chrome Installed a 4GB AI Model on Your PC
#33In their defense, it's an astonishingly good model for this size and you can use it for all sorts of cool stuff. Little demo of using this local model to inject AI into a page with a monkeyscript: https://www.youtube.com/watch?v=MPi33D8DoQ0&t=3000s
yeah I'm lowkey pissed off people keep insulting google for giving them an offline version of coding enabled wikipedia that they get literally 0 data analytics from (just turn your wifi and ethernet off and use it offline after downloading it) what part of the 4Gb file offended people? the fact that ai runs on the edge reliably now?
Re: Google Chrome Installed a 4GB AI Model on Your PC
#34IMO If you're into tech and still use Chrome*, that's on you. If you are not, you probably don't really care unless you need extra space on your PC. *Except in your job, since you probably obligated to use.
Switched from firefox few months ago, I don't like google, but firefox has only few percent of market share currenly, many pages simply do not work properly with it, plus it has bugs on macos (like onmousover stuff), which simply make it unusable. Safari is fine, but also many websites (which sometimes you need to use like banking or gov) are not tested on it. The overall browsers situation is less than ideal.
Re: Google Chrome Installed a 4GB AI Model on Your PC
#35Story from May; Discussions: https://news.ycombinator.com/item?id=48019219 https://news.ycombinator.com/item?id=48050964
So, Did Google respond?
Re: Google Chrome Installed a 4GB AI Model on Your PC
#36IMO If you're into tech and still use Chrome*, that's on you. If you are not, you probably don't really care unless you need extra space on your PC. *Except in your job, since you probably obligated to use.
Switched from firefox few months ago, I don't like google, but firefox has only few percent of market share currenly, many pages simply do not work properly with it, plus it has bugs on macos (like onmousover stuff), which simply make it unusable. Safari is fine, but also many websites (which sometimes you need to use like banking or gov) are not tested on it. The overall browsers situation is less than ideal.
Re: Google Chrome Installed a 4GB AI Model on Your PC
#37In their defense, it's an astonishingly good model for this size and you can use it for all sorts of cool stuff. Little demo of using this local model to inject AI into a page with a monkeyscript: https://www.youtube.com/watch?v=MPi33D8DoQ0&t=3000s
That does nothing to defend Google since the quality of the model is irrelevant to the accusation.
Re: Google Chrome Installed a 4GB AI Model on Your PC
#38This looks like AI-written blather, but it links to an article with useful information by someone who actually checked: https://tech.yahoo.com/ai/gemini/articles/fact-check-google-...
Re: Google Chrome Installed a 4GB AI Model on Your PC
#39Any page can silently trigger an additional multi-gigabyte download for Chrome users by just calling this API: await LanguageModel.create() Since the model is installed once per browser, LanguageModel.availability() could probably also be used for fingerprinting.
Just the availability wouldn't be that bad from a fingerprinting standpoint (getting one bit that a majority of Chrome users have is just the same bits you already have, usually), except, it also exposes whether the underlying hardware is "eligible," and once it's running, you can also benchmark the language model performance. It's a mess. I think it might also be broken and work in iframes, which would be an even bi…
Why?
Re: Google Chrome Installed a 4GB AI Model on Your PC
#40People have asked me what use cases this has, and I've been making little apps with on-device AI such as a calorie estimator and tracker for food, or a page summarizer or translated (the latter of which Firefox actually already has using a local model). Why pay for a cloud model when the user has a perfectly good model themselves?