Translate

Friday, November 13, 2020

Black Friday Walmart deals: $199 robot vacuum, $194 AirPods Pro available now, $35 Keurig and $119 GoPro coming soon - CNET

The next phase of the retailer's early sales is happening now -- but the best stuff is going fast.

from CNET News https://ift.tt/3plTSD4
via A.I .Kung Fu

Best Black Friday 2020 TV deals: $100 32-incher, $250 55-inch TCL, plus more soon - CNET

It's the best time of the year to save on new TVs from TCL, LG, Sony and more.

from CNET News https://ift.tt/3kwYCCh
via A.I .Kung Fu

Social media: How can we protect its youngest users?

A psychologist says parents need to provide their children with "digital resilience".

from BBC News - Technology https://ift.tt/2Urn1yI
via A.I .Kung Fu

Predicting qualification ranking based on practice session performance for Formula 1 Grand Prix

If you’re a Formula 1 (F1) fan, have you ever wondered why F1 teams have very different performances between qualifying and practice sessions? Why do they have multiple practice sessions in the first place? Can practice session results actually tell something about the upcoming qualifying race? In this post, we answer these questions and more. We show you how we can predict qualifying results based on practice session performances by harnessing the power of data and machine learning (ML). These predictions are being integrated into the new “Qualifying Pace” insight for each F1 Grand Prix (GP). This work is part of the continuous collaboration between F1 and the Amazon ML Solutions Lab to generate new F1 Insights powered by AWS.

Each F1 GP consists of several stages. The event starts with three practice sessions (P1, P2, and P3), followed by a qualifying (Q) session, and then the final race. Teams approach practice and qualifying sessions differently because these sessions serve different purposes. The practice sessions are the teams’ opportunities to test out strategies and tire compounds to gather critical data in preparation for the final race. They observe the car’s performance with different strategies and tire compounds, and use this to determine their overall race strategy.

In contrast, qualifying sessions determine the starting position of each driver on race day. Teams focus solely on obtaining the fastest lap time. Because of this shift in tactics, Friday and Saturday practice session results often fail to accurately predict the qualifying order.

In this post, we introduce deterministic and probabilistic methods to model the time difference between the fastest lap time in practice sessions and the qualifying session (∆t = tq-tp). The goal is to more accurately predict the upcoming qualifying standings based on the practice sessions.

Error sources of ∆t

The delta of the fastest lap time between practice and qualifying sessions (∆t) comes primarily from variations in fuel level and tire grip.

A higher fuel level adds weight to the car and reduces the speed of the car. For practice sessions, teams vary the fuel level as they please. For the second practice session (P2), it’s common to begin with a low fuel level and run with more fuel in the latter part of the session. During qualifying, teams use minimal fuel levels in order to record the fastest lap time. The impact of fuel on lap time varies from circuit to circuit, depending on how many straights the circuit has and how long these straights are.

Tires also play a significant role in an F1 car’s performance. During each GP event, the tire supplier brings various tire types with varying compounds suitable for different racing conditions. Two of these are for wet circuit conditions: intermediate tires for light standing water and wet tires for heavy standing water. The remaining dry running tires can be categorized into three compound types: hard, medium, and soft. These tire compounds provide different grips to the circuit surface. The more grip the tire provides, the faster the car can run.

Past racing results showed that car performance dropped significantly when wet tires were used. For example, in the 2018 Italy GP, because the P1 session was wet and the qualifying session was dry, the fastest lap time in P1 was more than 10 seconds slower than the qualifying session.

Among the dry running types, the hard tire provides the least grip but is the most durable, whereas the soft tire has the most grip but is the least durable. Tires degrade over the course of a race, which reduces the tire grip and slows down the car. Track temperature and moisture affects the progression of degradation, which in turn changes the tire grip. As in the case with fuel level, tire impact on lap time changes from circuit to circuit.

Data and attempted approaches

Given this understanding of factors that can impact lap time, we can use fuel level and tire grip data to estimate the final qualifying lap time based on known practice session performance. However, as of this writing, data records to directly infer fuel level and tire grip during the race are not available. Therefore, we take an alternative approach with data we can currently obtain.

The data we used in the modeling were records of fastest lap times for each GP since 1950 and partial years of weather data for the corresponding sessions. The lap times data included the fastest lap time for each session (P1, P2, P3, and Q) of each GP with the driver, car and team, and circuit name (publicly available on F1’s website). Track wetness and temperature for each corresponding session was available in the weather data.

We explored two implicit methods with the following model inputs: the team and driver name, and the circuit name. Method one was a rule-based empirical model that attributed observed  to circuits and teams. We estimated the latent parameter values (fuel level and tire grip differences specific to each team and circuit) based on their known lap time sensitivities. These sensitivities were provided by F1 and calculated through simulation runs on each circuit track. Method two was a regression model with driver and circuit indicators. The regression model learned the sensitivity of ∆t for each driver on each circuit without explicitly knowing the fuel level and tire grip exerted. We developed and compared deterministic models using XGBoost and AutoGluon, and probabilistic models using PyMC3.

We built models using race data from 2014 to 2019, and tested against race data from 2020. We excluded data from before 2014 because there were significant car development and regulation changes over the years. We removed races in which either the practice or qualifying session was wet because ∆t for those sessions were considered outliers.

Managed model training with Amazon SageMaker

We trained our regression models on Amazon SageMaker.

Amazon SageMaker is a fully managed service that provides every developer and data scientist with the ability to build, train, and deploy ML models quickly. Specifically for model training, it provides many features to assist with the process.

For our use case, we explored multiple iterations on the choices of model feature sets and hyperparameters. Recording and comparing the model metrics of interest was critical to choosing the most suitable model. The Amazon SageMaker API allowed customized metrics definition prior to launching a model training job, and easy retrieval after the training job was complete. Using the automatic model tuning feature reduced the mean squared error (MSE) metric on the test data by 45% compared to the default hyperparameter choice.

We trained an XGBoost model using the Amazon SageMaker’s built-in implementation. Its built-in implementation allowed us to run model training through a general estimator interface. This approach provided better logging, superior hyperparameter validation, and a larger set of metrics than the original implementation.

Rule-based model

In the rule-based approach, we reason that the differences of lap times ∆t primarily come from systematic variations of tire grip for each circuit and fuel level for each team between practice and qualifying sessions. After accounting for these known variations, we assume residuals are random small numbers with a mean of zero. ∆t can be modeled with the following equation:

∆tf(c) and ∆tg(c) are known sensitivities of fuel mass and tire grip, and  is the residual. A hierarchy exists among the factors contained in the equation. We assume grip variations for each circuit (g(c)) are at the top level. Under each circuit, there are variations of fuel level across teams (f(t,c)).

To further simplify the model, we neglect  because we assume it is small. We further assume fuel variation for each team across all circuits is the same (i.e., f(t,c) = f(t)). We can simplify the model to the following:

Because ∆tf(c) and ∆tg(c) are known, f(t) and g(c), we can estimate team fuel variations and tire grip variations from the data.

The differences in the sensitivities depend on the characteristics of circuits. From the following track maps, we can observe that the Italian GP circuit has fewer corner turns and the straight sections are longer compared to the Singapore GP circuit. Additional tire grip gives a larger advantage in the Singapore GP circuit.

 

ML regression model

For the ML regression method, we don’t directly model the relation between  and fuel level and grip variations. Instead, we fit the following regression model with just the circuit, team, and driver indicator variables:

Ic, It, and Id represent the indicator variables for circuits, teams, and drivers.

Hierarchical Bayesian model

Another challenge with modeling the race pace was due to noisy measurements in lap times. The magnitude of random effect (ϵ) of ∆t could be non-negligible. Such randomness might come from drivers’ accidental drift from their normal practice at the turns or random variations of drivers’ efforts during practice sessions. With deterministic approaches, such random effect wasn’t appropriately captured. Ideally, we wanted a model that could quantify uncertainty about the predictions. Therefore, we explored Bayesian sampling methods.

With a hierarchical Bayesian model, we account for the hierarchical structure of the error sources. As with the rule-based model, we assume grip variations for each circuit (g(c))) are at the top level. The additional benefit of a hierarchical Bayesian model is that it incorporates individual-level variations when estimating group-level coefficients. It’s a middle ground between two extreme views of data. One extreme is to pool data for every group (circuit and driver) without considering the intrinsic variations among groups. The other extreme is to train a regression model for each circuit or driver. With 21 circuits, this amounts to 21 regression models. With a hierarchical model, we have a single model that considers the variations simultaneously at the group and individual level.

We can mathematically describe the underlying statistical model for the hierarchical Bayesian approach as the following varying intercepts model:

Here, i represents the index of each data observation, j represents the index of each driver, and k represents the index of each circuit. μjk represents the varying intercept for each driver under each circuit, and θk represents the varying intercept for each circuit. wp and wq represent the wetness level of the track during practice and qualifying sessions, and ∆T represents the track temperature difference.

Test models in the 2020 races

After predicting ∆t, we added it into the practice lap times to generate predictions of qualifying lap times. We determined the final ranking based on the predicted qualifying lap times. Finally, we compared predicted lap times and rankings with the actual results.

The following figure compares the predicted rankings and the actual rankings for all three practice sessions for the Austria, Hungary, and Great Britain GPs in 2020 (we exclude P2 for the Hungary GP because the session was wet).

For the Bayesian model, we generated predictions with an uncertainty range based on the posterior samples. This enabled us to predict the ranking of the drivers relatively with the median while accounting for unexpected outcomes in the drivers’ performances.

The following figure shows an example of predicted qualifying lap times (in seconds) with an uncertainty range for selected drivers at the Austria GP. If two drivers’ prediction profiles are very close (such as MAG and GIO), it’s not surprising that either driver might be the faster one in the upcoming qualifying session.

Metrics on model performance

To compare the models, we used mean squared error (MSE) and mean absolute error (MAE) for lap time errors. For ranking errors, we used rank discounted cumulative gain (RDCG). Because only the top 10 drivers gain points during a race, we used RDCG to apply more weight to errors in the higher rankings. For the Bayesian model output, we used median posterior value to generate the metrics.

The following table shows the resulting metrics of each modeling approach for the test P2 and P3 sessions. The best model by each metric for each session is highlighted.

MODEL MSE MAE RDCG
  P2 P3 P2 P3 P2 P3
Practice raw 2.822 1.053 1.544 0.949 0.92 0.95
Rule-based 0.349 0.186 0.462 0.346 0.88 0.95
XGBoost 0.358 0.141 0.472 0.297 0.91 0.95
AutoGluon 0.567 0.351 0.591 0.459 0.90 0.96
Hierarchical Bayesian 0.431 0.186 0.521 0.332 0.87 0.92

All models reduced the qualifying lap time prediction errors significantly compared to directly using the practice session results. Using practice lap times directly without considering pace correction, the MSE on the predicted qualifying lap time was up to 2.8 seconds. With machine learning methods which automatically learned pace variation patterns for teams and drivers on different circuits, we brought the MSE down to smaller than half a second. The resulting prediction was a more accurate representation of the pace in the qualifying session. In addition, the models improved the prediction of rankings by a small margin. However, there was no one single approach that outperformed all others. This observation highlighted the effect of random errors on the underlying data.

Summary

In this post, we described a new Insight developed by the Amazon ML Solutions Lab in collaboration with Formula 1 (F1).

This work is part of the six new F1 Insights powered by AWS that are being released in 2020, as F1 continues to use AWS for advanced data processing and ML modeling. Fans can expect to see this new Insight unveiled at the 2020 Turkish GP to provide predictions for the upcoming qualifying races at practice sessions.

If you’d like help accelerating the use of ML in your products and services, please contact the Amazon ML Solutions Lab .

 


About the Author

Guang Yang is a data scientist at the Amazon ML Solutions Lab where he works with customers across various verticals and applies creative problem solving to generate value for customers with state-of-the-art ML/AI solutions.



from AWS Machine Learning Blog https://ift.tt/3nqbL22
via A.I .Kung Fu

Hisense 70-inch 4K UHD Smart Android TV deal is still available for $400 - CNET

One day later, still in stock -- for now. Plus, turn it (or any other) into a Roku TV for $29.

from CNET News https://ift.tt/3pv8Jeo
via A.I .Kung Fu

What The Crown season 4 gets right (and wrong) about Princess Diana - CNET

Real vs Netflix reel: The Spencer tiara should NOT look like a Burger King crown.

from CNET News https://ift.tt/32ZTGQD
via A.I .Kung Fu

Apple Watch SE Black Friday deal: 44mm back to $260 at Amazon - CNET

The weekend sale on the Apple Watch SE returns after a brief hiatus.

from CNET News https://ift.tt/3lmRHwE
via A.I .Kung Fu

A scheme to hand Trump electors in state legislatures is highly unlikely to happen.



from NYT > Technology https://ift.tt/3eYUkmb
via A.I .Kung Fu

AI services company C3.ai files for IPO, reports revenue of $157M in the fiscal year ending April 2020, up 71% YoY, and a deficit of $293M at the end of July (Tiernan Ray/ZDNet)

Tiernan Ray / ZDNet:
AI services company C3.ai files for IPO, reports revenue of $157M in the fiscal year ending April 2020, up 71% YoY, and a deficit of $293M at the end of July  —  The software-as-a-service company that has been using masses of GPUs to run deep learning programs plans to list under the ticker “AI.”



from Techmeme https://ift.tt/3nqOj4m
via A.I .Kung Fu

Ticketmaster's UK wing fined ~$1.6M by the UK ICO after a report found they failed to put appropriate security measures in place prior to their 2018 data breach (Shoshana Wodinsky/Gizmodo)

Shoshana Wodinsky / Gizmodo:
Ticketmaster's UK wing fined ~$1.6M by the UK ICO after a report found they failed to put appropriate security measures in place prior to their 2018 data breach  —  Ticketmaster's UK wing has been fined £1.25 million pounds (roughly $1.6 millions) following an investigation …



from Techmeme https://ift.tt/35wi65U
via A.I .Kung Fu

AI Weekly: Tech, power, and building the Biden administration

President-elect Joe Biden addresses the nation from the Chase Center November 07, 2020 in Wilmington, Delaware.
The presidential election is over, and debate over tech, power, and what the Biden administration should look like is in full swing.Read More

from VentureBeat https://ift.tt/3eVOqSN
via A.I .Kung Fu

Hackers sponsored by Russia and North Korea are targeting COVID-19 researchers

Hackers sponsored by Russia and North Korea are targeting COVID-19 researchers

Enlarge (credit: Getty Images)

Hackers sponsored by the Russian and North Korean governments have been targeting companies directly involved in researching vaccines and treatments for COVID-19, and in some cases, the attacks have succeeded, Microsoft said on Friday.

In all, there are seven prominent companies that have been targeted, Microsoft Corporate VP for Customer Security & Trust Tom Burt said. They include vaccine makers with COVID-19 vaccines in various clinical trial stages, a clinical research organization involved in trials, and a developer of a COVID-19 test. Also targeted were organizations with contracts with or investments from governmental agencies around the world for COVID-19-related work. The targets are located in the US, Canada, France, India, and South Korea.

“Microsoft is calling on the world’s leaders to affirm that international law protects health care facilities and to take action to enforce the law,” Burt wrote in a blog post. “We believe the law should be enforced not just when attacks originate from government agencies but also when they originate from criminal groups that governments enable to operate—or even facilitate—within their borders. This is criminal activity that cannot be tolerated.”

Read 6 remaining paragraphs | Comments



from Biz & IT – Ars Technica https://ift.tt/2H38aHy
via A.I .Kung Fu

How critical is the weather for the SpaceX launch?

Nasa and SpaceX were due to send astronauts to the ISS on Saturday but the weather's changed their plans.

from BBC News - Technology https://ift.tt/36CRPlF
via A.I .Kung Fu

Black Friday 2020 ad scans: See the best deals and sales at Walmart, Best Buy, HP, Newegg, GameStop and more - CNET

Looking for Black Friday ads from major retailers? This is your home base.

from CNET News https://ift.tt/36xYUnA
via A.I .Kung Fu

Apple TV Plus: Best movies, TV shows and documentaries streaming now - CNET

Wondering how to allocate your Apple TV Plus time? Here are some ideas.

from CNET News https://ift.tt/2ICb9a6
via A.I .Kung Fu

Disney's live-action Lilo & Stitch one step closer with new director reportedly tapped - CNET

The company is in talks with Crazy Rich Asians director Jon M. Chu, according to The Hollywood Reporter.

from CNET News https://ift.tt/38HfTX2
via A.I .Kung Fu

Need luggage? Save 35% on anything at Monos right now - CNET

Monos offers a premium luggage experience at more down-to-earth prices.

from CNET News https://ift.tt/3nA9nG3
via A.I .Kung Fu

Oculus Quest update adds fitness tracker app, and Quest 2 gets 90Hz games - CNET

Oculus Move is a central fitness dashboard that rolls out next week, and updated games for Quest 2 are coming, too.

from CNET News https://ift.tt/2IyhIL8
via A.I .Kung Fu

Facebook plans to use machine learning to sort its moderation queue prior to human review, prioritizing viral and potentially severe content first (Kyle Wiggers/VentureBeat)

Kyle Wiggers / VentureBeat:
Facebook plans to use machine learning to sort its moderation queue prior to human review, prioritizing viral and potentially severe content first  —  Facebook says it's using AI to prioritize potentially problematic posts for human moderators to review as it works to more quickly remove content that violates its community guidelines.



from Techmeme https://ift.tt/32KMdER
via A.I .Kung Fu

Oculus Quest 2 update adds support for 90Hz games; an Oculus Move app for tracking fitness metrics while playing is coming in the following week (Cameron Faulkner/The Verge)

Cameron Faulkner / The Verge:
Oculus Quest 2 update adds support for 90Hz games; an Oculus Move app for tracking fitness metrics while playing is coming in the following week  —  Plus, the mobile app will be able to record the headset's screen in late November  —  Oculus has rolled out its first big update …



from Techmeme https://ift.tt/2IDogbs
via A.I .Kung Fu