Lately video conferencing has performed an more and more vital position in each work and private communication for a lot of customers. Over the previous two years, we’ve enhanced this expertise in Google Meet by introducing privacy-preserving machine studying (ML) powered background options, also referred to as “digital inexperienced display”, which permits customers to blur their backgrounds or change them with different photographs. What is exclusive about this answer is that it runs straight within the browser with out the necessity to set up extra software program.
To this point, these ML-powered options have relied on CPU inference made potential by leveraging neural community sparsity, a standard answer that works throughout gadgets, from entry stage computer systems to high-end workstations. This allows our options to achieve the widest viewers. Nevertheless, mid-tier and high-end gadgets typically have highly effective GPUs that stay untapped for ML inference, and present performance permits net browsers to entry GPUs by way of shaders (WebGL).
With the newest replace to Google Meet, we at the moment are harnessing the ability of GPUs to considerably enhance the constancy and efficiency of those background results. As we element in “Environment friendly Heterogeneous Video Segmentation on the Edge”, these advances are powered by two main parts: 1) a novel real-time video segmentation mannequin and a couple of) a brand new, extremely environment friendly strategy for in-browser ML acceleration utilizing WebGL. We leverage this functionality to develop quick ML inference by way of fragment shaders. This mixture leads to substantial good points in accuracy and latency, resulting in crisper foreground boundaries.
![]() |
CPU segmentation vs. HD segmentation in Meet. |
Transferring In direction of Larger High quality Video Segmentation Fashions
To foretell finer particulars, our new segmentation mannequin now operates on excessive definition (HD) enter photographs, reasonably than lower-resolution photographs, successfully doubling the decision over the earlier mannequin. To accommodate this, the mannequin should be of upper capability to extract options with adequate element. Roughly talking, doubling the enter decision quadruples the computation value throughout inference.
Inference of high-resolution fashions utilizing the CPU will not be possible for a lot of gadgets. The CPU could have a number of high-performance cores that allow it to execute arbitrary complicated code effectively, however it’s restricted in its capacity for the parallel computation required for HD segmentation. In distinction, GPUs have many, comparatively low-performance cores coupled with a large reminiscence interface, making them uniquely appropriate for high-resolution convolutional fashions. Subsequently, for mid-tier and high-end gadgets, we undertake a considerably quicker pure GPU pipeline, which is built-in utilizing WebGL.
This transformation impressed us to revisit a few of the prior design selections for the mannequin structure.
- Spine: We in contrast a number of widely-used backbones for on-device networks and located EfficientNet-Lite to be a greater match for the GPU as a result of it removes the squeeze-and-excitation block, a part that’s inefficient on WebGL (extra beneath).
- Decoder: We switched to a multi-layer perceptron (MLP) decoder consisting of 1×1 convolutions as an alternative of utilizing easy bilinear upsampling or the costlier squeeze-and-excitation blocks. MLP has been efficiently adopted in different segmentation architectures, like DeepLab and PointRend, and is environment friendly to compute on each CPU and GPU.
- Mannequin dimension: With our new WebGL inference and the GPU-friendly mannequin structure, we had been in a position to afford a bigger mannequin with out sacrificing the real-time body price needed for easy video segmentation. We explored the width and the depth parameters utilizing a neural structure search.
![]() |
HD segmentation mannequin structure. |
In mixture, these adjustments considerably enhance the imply Intersection over Union (IoU) metric by 3%, leading to much less uncertainty and crisper boundaries round hair and fingers.
We have now additionally launched the accompanying mannequin card for this segmentation mannequin, which particulars our equity evaluations. Our evaluation exhibits that the mannequin is constant in its efficiency throughout the assorted areas, skin-tones, and genders, with solely small deviations in IoU metrics.
Mannequin | Decision | Inference | IoU | Latency (ms) | ||||
CPU segmenter | 256×144 | Wasm SIMD | 94.0% | 8.7 | ||||
GPU segmenter | 512×288 | WebGL | 96.9% | 4.3 |
Comparability of the earlier segmentation mannequin vs. the brand new HD segmentation mannequin on a Macbook Professional (2018). |
Accelerating Internet ML with WebGL
One widespread problem for web-based inference is that net applied sciences can incur a efficiency penalty when in comparison with apps working natively on-device. For GPUs, this penalty is substantial, solely attaining round 25% of native OpenGL efficiency. It is because WebGL, the present GPU customary for Internet-based inference, was primarily designed for picture rendering, not arbitrary ML workloads. Particularly, WebGL doesn’t embody compute shaders, which permit for normal goal computation and allow ML workloads in cellular and native apps.
To beat this problem, we accelerated low-level neural community kernels with fragment shaders that usually compute the output properties of a pixel like colour and depth, after which utilized novel optimizations impressed by the graphics group. As ML workloads on GPUs are sometimes certain by reminiscence bandwidth reasonably than compute, we targeted on rendering methods that might enhance the reminiscence entry, reminiscent of A number of Render Targets (MRT).
MRT is a function in fashionable GPUs that enables rendering photographs to a number of output textures (OpenGL objects that symbolize photographs) directly. Whereas MRT was initially designed to help superior graphics rendering reminiscent of deferred shading, we discovered that we may leverage this function to drastically cut back the reminiscence bandwidth utilization of our fragment shader implementations for important operations, like convolutions and absolutely related layers. We achieve this by treating intermediate tensors as a number of OpenGL textures.
Within the determine beneath, we present an instance of intermediate tensors having 4 underlying GL textures every. With MRT, the variety of GPU threads, and thus successfully the variety of reminiscence requests for weights, is lowered by an element of 4 and saves reminiscence bandwidth utilization. Though this introduces appreciable complexities within the code, it helps us attain over 90% of native OpenGL efficiency, closing the hole with native purposes.
Conclusion
We have now made fast strides in enhancing the standard of real-time segmentation fashions by leveraging the GPU on mid-tier and high-end gadgets to be used with Google Meet. We look ahead to the probabilities that will likely be enabled by upcoming applied sciences like WebGPU, which carry compute shaders to the online. Past GPU inference, we’re additionally engaged on enhancing the segmentation high quality for decrease powered gadgets with quantized inference by way of XNNPACK WebAssembly.
Acknowledgements
Particular due to these on the Meet crew and others who labored on this mission, particularly Sebastian Jansson, Sami Kalliomäki, Rikard Lundmark, Stephan Reiter, Fabian Bergmark, Ben Wagner, Stefan Holmer, Dan Gunnarsson, Stéphane Hulaud, and to all our crew members who made this potential: Siargey Pisarchyk, Raman Sarokin, Artsiom Ablavatski, Jamie Lin, Tyler Mullen, Gregory Karpiak, Andrei Kulik, Karthik Raveendran, Trent Tolley, and Matthias Grundmann.