Stable Channel Update for ChromeOS

The Stable channel is being updated to 106.0.5249.134 (Platform version: 15054.114.0/15054.115.0) for most ChromeOS devices and will be rolled out over the next few days. This build contains a number of bug fixes and security updates.

If you find new issues, please let us know one of the following ways:

Interested in switching channels? Find out how. 


Cole Brown

Google ChromeOS


How Google is helping to make the Internet of Things more secure

The growing adoption of Internet of Things (IoT) technology affects consumers around the world in significant ways. Not only are we becoming more deeply connected through IoT devices, we’re now putting more of our lives and trust in the hands of digital technology. Yet, the IoT industry still lacks a global harmonized way for measuring the security quality of connected products, which means consumers may not have the visibility they need into whether their IoT devices protect their data.

Today, Google participated in a White House strategic discussion on IoT Security Labeling to discuss the future of connected device security and shared additional steps we’re taking to secure more of our IoT products.

IoT security today is in the early stages of standardization. We are encouraged by the US government’s efforts to accelerate that process, and to give people more transparency in the security of the IoT products they use every day. Achieving standardized security best practices and consumer transparency at scale could be a tide that raises all boats – giving consumers the ability to understand the level of security in IoT products, choose accordingly, while driving demand for “healthier” security choices from IoT device manufacturers.

Moving IoT security and transparency forward

Since Google began our "helpful home" IoT device journey over a decade ago, we’ve learned a lot and continue to work to deliver even more helpful and secure connected devices — and the software that supports them — to our users. Today, we are excited to announce additional steps that we’re taking to make connected IoT devices safer for consumers.

  • Google is helping lead industry efforts to create a functional, clear, and harmonized cybersecurity label for IoT devices that can help consumers make better device decisions, in an ongoing dialogue with government leaders in cybersecurity, including at NIST, CISA and the White House.
  • Google is extending its commitment to conduct security assessments to Fitbit devices. Announced last year for Nest and Pixel devices, we validate the security of our devices and publish the results. This gives consumers even more transparency by allowing them to review the results while demonstrating our commitment to developing the strongest security protections for our users across all of our IoT products.

Our unwavering commitment to security

We don’t take these commitments to security and transparency lightly. We see these steps as an opportunity to increase transparency and help improve the cybersecurity baseline for the entire ecosystem. And we’ll continue to encourage the community to leverage the security enhancements we continually make to the operating systems we maintain, the open source libraries and tools, and our first-party products which often act as reference implementations to help our broader ecosystem steadily improve their cybersecurity hygiene.

We’re also committed to partnering with organizations working to advance IoT security. Google welcomes the approach taken by the Connectivity Standards Alliance (CSA) to build a harmonized global certification program that addresses the requirements set forth in the major global IoT baselines. We believe a global and harmonized approach will raise the bar on IoT security for both enterprise and consumer devices.

As the IoT market continues to mature and adoption grows, we look forward to working with U.S. policymakers, industry partners, developers and public interest advocates to drive strong, standardized IoT security practices and transparency for everyone.

Do Modern ImageNet Classifiers Accurately Predict Perceptual Similarity?

The task of determining the similarity between images is an open problem in computer vision and is crucial for evaluating the realism of machine-generated images. Though there are a number of straightforward methods of estimating image similarity (e.g., low-level metrics that measure pixel differences, such as FSIM and SSIM), in many cases, the measured similarity differences do not match the differences perceived by a person. However, more recent work has demonstrated that intermediate representations of neural network classifiers, such as AlexNet, VGG and SqueezeNet trained on ImageNet, exhibit perceptual similarity as an emergent property. That is, Euclidean distances between encoded representations of images by ImageNet-trained models correlate much better with a person’s judgment of differences between images than estimating perceptual similarity directly from image pixels.

Two sets of sample images from the BAPPS dataset. Trained networks agree more with human judgements as compared to low-level metrics (PSNR, SSIM, FSIM). Image source: Zhang et al. (2018).

In “Do better ImageNet classifiers assess perceptual similarity better?” published in Transactions on Machine Learning Research, we contribute an extensive experimental study on the relationship between the accuracy of ImageNet classifiers and their emergent ability to capture perceptual similarity. To evaluate this emergent ability, we follow previous work in measuring the perceptual scores (PS), which is roughly the correlation between human preferences to that of a model for image similarity on the BAPPS dataset. While prior work studied the first generation of ImageNet classifiers, such as AlexNet, SqueezeNet and VGG, we significantly increase the scope of the analysis incorporating modern classifiers, such as ResNets and Vision Transformers (ViTs), across a wide range of hyper-parameters.

Relationship Between Accuracy and Perceptual Similarity
It is well established that features learned via training on ImageNet transfer well to a number of downstream tasks, making ImageNet pre-training a standard recipe. Further, better accuracy on ImageNet usually implies better performance on a diverse set of downstream tasks, such as robustness to common corruptions, out-of-distribution generalization and transfer learning on smaller classification datasets. Contrary to prevailing evidence that suggests models with high validation accuracies on ImageNet are likely to transfer better to other tasks, surprisingly, we find that representations from underfit ImageNet models with modest validation accuracies achieve the best perceptual scores.

Plot of perceptual scores (PS) on the 64 × 64 BAPPS dataset (y-axis) against the ImageNet 64 × 64 validation accuracies (x-axis). Each blue dot represents an ImageNet classifier. Better ImageNet classifiers achieve better PS up to a certain point (dark blue), beyond which improving the accuracy lowers the PS. The best PS are attained by classifiers with moderate accuracy (20.0–40.0).

We study the variation of perceptual scores as a function of neural network hyperparameters: width, depth, number of training steps, weight decay, label smoothing and dropout. For each hyperparameter, there exists an optimal accuracy up to which improving accuracy improves PS. This optimum is fairly low and is attained quite early in the hyperparameter sweep. Beyond this point, improved classifier accuracy corresponds to worse PS.

As illustration, we present the variation of PS with respect to two hyperparameters: training steps in ResNets and width in ViTs. The PS of ResNet-50 and ResNet-200 peak very early at the first few epochs of training. After the peak, PS of better classifiers decrease more drastically. ResNets are trained with a learning rate schedule that causes a stepwise increase in accuracy as a function of training steps. Interestingly, after the peak, they also exhibit a step-wise decrease in PS that matches this step-wise accuracy increase.

Early-stopped ResNets attain the best PS across different depths of 6, 50 and 200.

ViTs consist of a stack of transformer blocks applied to the input image. The width of a ViT model is the number of output neurons of a single transformer block. Increasing its width is an effective way to improve its accuracy. Here, we vary the width of two ViT variants, B/8 and L/4 (i.e., Base and Large ViT models with patch sizes 4 and 8 respectively), and evaluate both the accuracy and PS. Similar to our observations with early-stopped ResNets, narrower ViTs with lower accuracies perform better than the default widths. Surprisingly, the optimal width of ViT-B/8 and ViT-L/4 are 6 and 12% of their default widths. For a more comprehensive list of experiments involving other hyperparameters such as width, depth, number of training steps, weight decay, label smoothing and dropout across both ResNets and ViTs, check out our paper.

Narrow ViTs attain the best PS.

Scaling Down Models Improves Perceptual Scores
Our results prescribe a simple strategy to improve an architecture’s PS: scale down the model to reduce its accuracy until it attains the optimal perceptual score. The table below summarizes the improvements in PS obtained by scaling down each model across every hyperparameter. Except for ViT-L/4, early stopping yields the highest improvement in PS, regardless of architecture. In addition, early stopping is the most efficient strategy as there is no need for an expensive grid search.

Model Default Width Depth Weight
Decay
Central
Crop
Train
Steps
Best
ResNet-6 69.1 +0.4 - +0.3 0.0 +0.5 69.6
ResNet-50 68.2 +0.4 - +0.7 +0.7 +1.5 69.7
ResNet-200 67.6 +0.2 - +1.3 +1.2 +1.9 69.5
ViT B/8 67.6 +1.1 +1.0 +1.3 +0.9 +1.1 68.9
ViT L/4 67.9 +0.4 +0.4 -0.1 -1.1 +0.5 68.4
Perceptual Score improves by scaling down ImageNet models. Each value denotes the improvement obtained by scaling down a model across a given hyperparameter over the model with default hyperparameters.

Global Perceptual Functions
In prior work, the perceptual similarity function was computed using Euclidean distances across the spatial dimensions of the image. This assumes a direct correspondence between pixels, which may not hold for warped, translated or rotated images. Instead, we adopt two perceptual functions that rely on global representations of images, namely the style-loss function from the Neural Style Transfer work that captures stylistic similarity between two images, and a normalized mean pool distance function. The style-loss function compares the inter-channel cross-correlation matrix between two images while the mean pool function compares the spatially averaged global representations.

Global perceptual functions consistently improve PS across both networks trained with default hyperparameters (top) and ResNet-200 as a function of train epochs (bottom).

We probe a number of hypotheses to explain the relationship between accuracy and PS and come away with a few additional insights. For example, the accuracy of models without commonly used skip-connections also inversely correlate with PS, and layers close to the input on average have lower PS as compared to layers close to the output. For further exploration involving distortion sensitivity, ImageNet class granularity, and spatial frequency sensitivity, check out our paper.

Conclusion
In this paper, we explore the question of whether improving classification accuracy yields better perceptual metrics. We study the relationship between accuracy and PS on ResNets and ViTs across many different hyperparameters and observe that PS exhibits an inverse-U relationship with accuracy, where accuracy correlates with PS up to a certain point, and then exhibits an inverse-correlation. Finally, in our paper, we discuss in detail a number of explanations for the observed relationship between accuracy and PS, involving skip connections, global similarity functions, distortion sensitivity, layerwise perceptual scores, spatial frequency sensitivity and ImageNet class granularity. While the exact explanation for the observed tradeoff between ImageNet accuracy and perceptual similarity is a mystery, we are excited that our paper opens the door for further research in this area.

Acknowledgements
This is joint work with Neil Houlsby and Nal Kalchbrenner. We would additionally like to thank Basil Mustafa, Kevin Swersky, Simon Kornblith, Johannes Balle, Mike Mozer, Mohammad Norouzi and Jascha Sohl-Dickstein for useful discussions.

Source: Google AI Blog


Android 13 (Go edition): Easier to update and tailored just for you

When we introduced Android (Go edition) five years ago, we tailored our core mobile platform to power affordable phones with limited memory and storage. This need is just as pertinent today, with nearly 180 million people coming online in the last twelve months alone.

As we announce the release of Android 13 (Go edition), we’re marking a milestone, too: there are now over 250 million monthly active devices powered by Android Go.

To better serve this growing set of users, we focused on three critical qualities: reliability, usability and customization. Let’s walk through what’s new in this release.

Get direct software updates

Updating the software in a phone takes a lot of storage space, which most entry-level devices can’t afford to lose. With Android 13 (Go edition), we’re bringing Google Play System Updates to Go devices which helps ensure devices can regularly receive important software updates, outside of the major Android release. This will make the delivery of critical updates quick and simple without compromising storage availability on the device. The result is a phone that stays up to date over time — and you don’t have to wait for the next release or a software push from your phone’s manufacturer to have the latest and greatest.

Discover content just for you

Android (Go edition) has built-in intelligence that helps you get more from your phone. This release brings you the Discover feature, letting you swipe right from your home screen to see a curated list of articles and other content.

Tailor your phone’s look

Four images of phones showing the Material You UI and wallpaper color theming on Android Go devices

Everyone should be able to adjust their phone to fit their needs and to reflect their tastes. This new release brings Material You to Android Go for the first time, so you can customize your entire phone’s color scheme to coordinate with your wallpaper. When you set your wallpaper image, you’ll see four corresponding color schemes to choose from. Besides making for a beautiful home screen, the dynamic coloring really helps make your smartphone feel unique to you.

In addition to the new features that are tailored to the needs of Go users, this update also brings some of key Android 13 features like Notification Permissions, App Language Preferences and more. Our goal with this release is to support more possibilities for the millions of current and future owners of an Android Go device. Look out for new devices launching with Android 13 (Go edition) in 2023.

Source: Android


#WeArePlay | Meet app founders helping people around the world

Posted by Leticia Lago, Developer Marketing

There are millions of apps available on Google Play, created by thousands of founders across the world. Each single app is unique and special in its own right, but they all have one thing in common - their purpose is to help. From helping motorhome enthusiasts find somewhere to camp, small business owners manage their finances or waste pickers make a reliable income - in this latest batch of #WeArePlay stories, we celebrate app founders who are helping people across the world in extraordinarily different ways.

First we begin with Cristian. Originally from Villa Rica in southern Chile, he made his family very proud by being the first to go to university. During his studies in Santiago, he learned about the local waste pickers – people who make an income by searching through trash cans and finding valuable materials to sell. Despite his mother’s wishes, he was so motivated to help them that he dropped out of university and dedicated all his time to creating an app. Reciclapp works by helping waste pickers connect with local businesses, so they can collect resellable materials directly from them. So far, the app has helped waste pickers across the city save time and guarantee a more reliable income. As Cristian has grown his company to a team of 12 and expanded into Mexico, his mother is now very proud of his bravery and success.

Next, Kennedy and Duke. When they were children, their father’s business sadly failed because managing his finances and tracking spending was too hard. Years later, after a successful career abroad in tech, Kennedy decided it was time to return to his homeland of Nigeria and build his own company. Inspired by his father’s struggle, he partnered with brother Duke and travelled across the country to interview other business owners about their financial struggles. Using this research, they created Kippa - the app simplifies bookkeeping to make sending invoices, storing receipts and setting up a bank account easy. It’s now used by over half a million businesses in Nigeria, as Kennedy mentions “without Google Play, we couldn't help as many business owners”.

To round up today, Gijs and Eefje. The couple adore renting campervans and travelling around to explore the natural beauty of Europe, but they always seemed to struggle with one thing - easily finding places to stay. Feeling like nothing out there could help them, they decided to give app development a go and create Campy. The app works as a digital camping encyclopaedia: helping like-minded campervan enthusiasts discover the perfect spots to set up camp, plan their trips and meet others who love the outdoors. A few years after Campy launched, Gijs and Eefje now have 2 little girls to bring on their big adventures, and are elated with the feedback they have received - “it never ceases to amaze me what a tiny app can do for so many people”.

Check out all the stories from around the world at g.co/play/weareplay and stay tuned for more coming soon.


How useful did you find this blog post?



#WeArePlay | Meet app founders helping people around the world

Posted by Leticia Lago, Developer Marketing

There are millions of apps available on Google Play, created by thousands of founders across the world. Each single app is unique and special in its own right, but they all have one thing in common - their purpose is to help. From helping motorhome enthusiasts find somewhere to camp, small business owners manage their finances or waste pickers make a reliable income - in this latest batch of #WeArePlay stories, we celebrate app founders who are helping people across the world in extraordinarily different ways.

First we begin with Cristian. Originally from Villa Rica in southern Chile, he made his family very proud by being the first to go to university. During his studies in Santiago, he learned about the local waste pickers – people who make an income by searching through trash cans and finding valuable materials to sell. Despite his mother’s wishes, he was so motivated to help them that he dropped out of university and dedicated all his time to creating an app. Reciclapp works by helping waste pickers connect with local businesses, so they can collect resellable materials directly from them. So far, the app has helped waste pickers across the city save time and guarantee a more reliable income. As Cristian has grown his company to a team of 12 and expanded into Mexico, his mother is now very proud of his bravery and success.

Next, Kennedy and Duke. When they were children, their father’s business sadly failed because managing his finances and tracking spending was too hard. Years later, after a successful career abroad in tech, Kennedy decided it was time to return to his homeland of Nigeria and build his own company. Inspired by his father’s struggle, he partnered with brother Duke and travelled across the country to interview other business owners about their financial struggles. Using this research, they created Kippa - the app simplifies bookkeeping to make sending invoices, storing receipts and setting up a bank account easy. It’s now used by over half a million businesses in Nigeria, as Kennedy mentions “without Google Play, we couldn't help as many business owners”.

To round up today, Gijs and Eefje. The couple adore renting campervans and travelling around to explore the natural beauty of Europe, but they always seemed to struggle with one thing - easily finding places to stay. Feeling like nothing out there could help them, they decided to give app development a go and create Campy. The app works as a digital camping encyclopaedia: helping like-minded campervan enthusiasts discover the perfect spots to set up camp, plan their trips and meet others who love the outdoors. A few years after Campy launched, Gijs and Eefje now have 2 little girls to bring on their big adventures, and are elated with the feedback they have received - “it never ceases to amaze me what a tiny app can do for so many people”.

Check out all the stories from around the world at g.co/play/weareplay and stay tuned for more coming soon.


How useful did you find this blog post?



Google Assistant offers information and hope for Breast Cancer Awareness Month

It has been nearly 15 years since that otherwise ordinary Thursday afternoon when my mom came home with a diagnosis that would change our lives, irrevocably and forever: Stage II breast cancer. Despite the visceral and all-consuming fear that accompanies a cancer diagnosis, the oncologists reassured us hers was treatable, that she’d be there to dance at our weddings, that she’d live to grow old.

But she died instead.

Her cancer was too aggressive. She ran out of treatment options. Just two years after the word “cancer” cleaved our lives in half, she was gone — destroyed by a disease that could’ve been stopped had we just known sooner.

Unfortunately this experience — this painfully tragic, heartbreaking and circuitous trajectory — is shared by too many people. Every year, approximately 42,000 women in the U.S. die of breast cancer, and one of every eight women in the U.S. will be diagnosed with the disease over the course of her lifetime. These are women we love fiercely — our moms, sisters, friends, neighbors, daughters and leaders. And like my mom, for most of them — nearly 85% — this diagnosis comes with no family history whatsoever.

While we can’t stop the incidence of breast cancer, we know one thing is true: Early detection saves lives. Women who catch their cancers early — through regular screenings, checkups and mammograms — have a much higher chance of surviving. Of responding to treatments. Of living to meet their grandchildren.

That’s why, in honor of Breast Cancer Awareness Month, we’re sharing updates around how Google is helping. On top of our work building AI models that can improve the detection of breast cancer in screenings, we’re raising awareness about the importance of these checkups. For instance, we’re building features into products like Google Assistant to help people take early steps to protect themselves against breast cancer.

Breast cancer facts and resources on Assistant

Since more than 700 million people turn to Google Assistant every month as their go-to helper, it’s a great way to reach them in their everyday moments.

If you’re prone to putting off your checkups, just tell your Assistant, “Hey Google, set an annual reminder to get my breast exam on [date].” And if you say, “Hey Google, tell me about Breast Cancer Awareness Month” or “Give me a Breast Cancer Awareness fact” in the U.S., you’ll receive facts from the Centers for Disease Control and Prevention (CDC) about the critical importance of early detection and mammography in improving prognoses and saving lives. From here on out, you can always turn to Assistant as a fast and reliable source of this information, not just during Breast Cancer Awareness Month.

A graphic shows someone asking Google Assistant for a Breast Cancer Awareness fact, followed by a response referencing the CDC’s guidance to lower one’s risk of breast cancer.

To reach even more people, during the month of October we’re also sharing more information about breast cancer in response to some of the most common questions people ask their Assistant every day — including “What’s up?” and “How are you?” Give it a try today in the U.S. on your home or mobile device.

Like so many, I’ve learned firsthand that our lives can change in a single, ordinary moment — with the discovery of a tumor you pray is benign, a diagnosis for which you hope there is a cure, the fear that the person you love may not celebrate another birthday or live to become a grandmother. While breast cancer took my mom's life far too soon, I can think of no greater gift to share in her memory than the reminder for other women to detect and treat their diseases early. Before they’re too aggressive to cure. Before they can circumvent even the strongest treatments. Before it’s too late.

For the millions who use Google Assistant, we want to make this information as easy to find as a simple, “Hey Google, how are you?” And by doing that, provide something just as meaningful: a place to start, and a glimmer of hope.

Add these new Google widgets to your iPhone

We rely on our phones for nearly every part of our day, from navigating to work to kicking back with our favorite shows. That’s why we’re always working to make your device more helpful, including giving you easier ways to find what you need — and keep your day running smoothly.

Widgets for Google apps are a big part of how we do that. OurLock Screen widgets for iOS 16 are officially available, so you can access features from your favorite Google apps with a quick tap or even just a glance at your iPhone Lock Screen. Between these and our Home Screen widgets, we’ve got you covered across all your favorite Google apps.

Let’s take a closer look at ways you can use all these new widgets.

Customize your Lock Screen for work and play

Set up a separate Lock Screen to stay focused during the workday. The Gmail widget can automatically show you the number of new messages since you last opened your inbox and which categories they're in, helping you stay on top of emails even if you’re heads down on a project. And with our Drive widgets, you can open a suggested or starred file in just one tap.

An iPhone Lock Screen with a photo of a bridge and the Gmail and Drive Lock Screen widgets. The Gmail widget shows there are eight new messages and the Drive widget shows a suggested file with the text “Q4 Lock Screen Widgets, you opened this recently.”

When you’re done for the day, simply switch to another Lock Screen to catch up on anything you missed at work — like headlines from the Google News Lock Screen widget. And when you’re ready to head home, use the Maps Frequent Trips widget to see estimated travel times and start your navigation in just a tap.

An iPhone Lock Screen with a photo of a dog and the Maps and News Lock Screen widgets. The Maps widget shows an estimated travel time to Home in 14 minutes on the train, while the News widget displays a headline that says “The Keyword: Google announces new customizable Lock Screen widgets on iOS.”

Navigate new territory with Maps, Search and Chrome

Out of town and looking for places to go? Add the Maps Search widget and customize it to find nearby restaurants, gas stations and more with one tap from your Lock Screen.

An iPhone Lock Screen with a photo of a bridge and four Google Maps Lock Screen widgets. The widgets are configured for restaurants, gas stations, coffee and hotels.

Even farther from home? Add a shortcut to Google Lens from the Google app’s Lock Screen widget to use your camera to start translating text in over 100 languages.

An iPhone Lock Screen with a photo of pink flowers and two Search Lock Screen widgets. One shows the Google Search bar, the other shows the Lens Translate icon.

Add the Chrome Lock Screen widgets to find something fast while you’re on the go. Quickly launch Chrome, start a search with your voice or open Incognito mode. If you have a long commute, tap the Dino game widget to help pass the time.

An iPhone Lock Screen with a photo of a rock formation and four Chrome Lock Screen widgets: Search, Voice Search Incognito Search and the Chrome Dino game.

Tune in with new YouTube and YouTube Music widgets

With our new YouTube Home Screen widget, just tap to watch Shorts or new videos from your favorite creators in the YouTube app. Or, start searching for a video right from your Home Screen.

An animation shows two YouTube Search Home Screen widgets switching into dark mode. The small widget displays “Search YouTube,” while the other widget shows a search box with a microphone at the top and options for Home, Shorts and Subscriptions underneath.

And with the new YouTube Music Lock Screen widget, start listening to your favorite songs in the app in just one tap.

An iPhone Lock Screen with a photo of a peace sign and two YouTube Music Lock Screen widgets. The rectangular widget displays a “Super Chill” playlist as Recently Played, while the other has “Super Chill” on a circular widget.

Can’t remember the name of a song? Configure the Google app’s Lock Screen widget to start a voice search — and start humming or singing a few bars.

An iPhone Lock Screen with a photo of concert stage and a Search Lock Screen widget with a microphone icon configured for voice search.

To try out these Google widgets, first make sure your iPhone is running the latest version of iOS and your Google apps are up to date. Then, press and hold down on your Lock Screen or Home Screen to start customizing. Check out step-by-step instructions for adding Lock Screen widgets.

A deep dive into Search Console performance data filtering and limits

Google Search performance data is the most widely used data in Search Console. This post explains in detail the data available and how Google processes it, including privacy filtering and other limitations related to serving latency, storage, and processing resources. Ever wonder how these systems work? Let's do a deep dive into them..