{"id":3340,"date":"2025-04-25T07:02:19","date_gmt":"2025-04-25T07:02:19","guid":{"rendered":"https:\/\/mailitics.com\/index.php\/2025\/04\/25\/predicting-nba-champion-machine-learning\/"},"modified":"2025-04-25T07:02:19","modified_gmt":"2025-04-25T07:02:19","slug":"predicting-nba-champion-machine-learning","status":"publish","type":"post","link":"https:\/\/mailitics.com\/index.php\/2025\/04\/25\/predicting-nba-champion-machine-learning\/","title":{"rendered":"Predicting the NBA Champion with Machine\u00a0Learning"},"content":{"rendered":"<p>    Predicting the NBA Champion with Machine\u00a0Learning<br \/>\n \t<BR><br \/>\n<BR><\/BR><br \/>\n    <!-- no image --><br \/>\n \t<BR><br \/>\n<BR><\/BR><\/p>\n<div>\n<p class=\"wp-block-paragraph\">Every NBA season, 30 teams compete for something only one will achieve: <strong>the legacy of a championship<\/strong>. From power rankings to trade deadline chaos and injuries, fans and analysts alike speculate endlessly about who will raise the Larry O\u2019Brien Trophy.<\/p>\n<p class=\"wp-block-paragraph\"><strong> <\/strong>But what if we could go beyond the hot takes and predictions, and <strong>use data and <a href=\"https:\/\/towardsdatascience.com\/tag\/machine-learning\/\" title=\"Machine Learning\">Machine Learning<\/a> to, at the end of the regular season, forecast the NBA Champion<\/strong>?<\/p>\n<p class=\"wp-block-paragraph\">In this article, I\u2019ll walk through this process \u2014 from gathering and preparing the data, to training and evaluating the model, and finally using it to make predictions for the upcoming 2024\u201325 Playoffs. Along the way, I\u2019ll highlight some of the most surprising insights that emerged from the analysis.<\/p>\n<p class=\"wp-block-paragraph\">All the code and data used are available on <a href=\"https:\/\/github.com\/GabrielPastorello\/NBAChampionPrediction\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>GitHub<\/strong><\/a>.<\/p>\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-dotted\">\n<h2 class=\"wp-block-heading\">Understanding the\u00a0problem<\/h2>\n<p class=\"wp-block-paragraph\">Before diving into model training, the most important step in any machine learning project is understanding the problem:<br \/><strong>What question are we trying to answer, and what data (and model) can help us get there?<\/strong><\/p>\n<p class=\"wp-block-paragraph\">In this case, the question is simple: <strong>Who is going to be the <a href=\"https:\/\/towardsdatascience.com\/tag\/nba\/\" title=\"NBA\">NBA<\/a> Champion?<\/strong><\/p>\n<p class=\"wp-block-paragraph\">A natural first idea is to frame this as a <strong>classification problem<\/strong>: each team in each season is labeled as either <em>Champion<\/em> or <em>Not Champion<\/em>.<\/p>\n<p class=\"wp-block-paragraph\">But there\u2019s a catch. There\u2019s only <strong>one champion per year <\/strong>(obviously).<\/p>\n<p class=\"wp-block-paragraph\">So if we pull data from the last 40 seasons, we\u2019d have 40 positive examples\u2026 and hundreds of negative ones. That lack of positive samples makes it extremely hard for a model to learn meaningful patterns, specially considering that winning an NBA title is such a rare event that we simply don\u2019t have enough historical data\u200a\u2014\u200awe\u2019re not working with 20,000 seasons. That scarcity makes it extremely difficult for any classification model to truly understand what separates champions from the rest.<\/p>\n<p class=\"wp-block-paragraph\">We need a smarter way to frame the problem.<\/p>\n<p class=\"wp-block-paragraph\">To help the model understand what makes a champion, it\u2019s useful to also teach it what makes an <em>almost<\/em> champion\u200a\u2014\u200aand how that differs from a team that was knocked out in the first round. In other words, we want the model to learn <strong>degrees of success<\/strong> in the playoffs, rather than a simple yes\/no outcome.<\/p>\n<p class=\"wp-block-paragraph\">This led me to the concept of <strong>Champion Share<\/strong>\u200a\u2014\u200athe proportion of playoff wins a team achieved out of the total needed to win the title.<\/p>\n<p class=\"wp-block-paragraph\">From 2003 onward, it takes <strong>16 wins<\/strong> to become a NBA Champion. However, between 1984 and 2002, the first round was a best-of-five series, so during that period the total required was <strong>15 wins<\/strong>.<\/p>\n<p class=\"wp-block-paragraph\">A team that loses in the first round might have 0 or 1 win (Champion Share = 1\/16), while a team that makes the Finals but loses might have 14 wins (Champion Share = 14\/16). The Champion has a full share of 1.0.<\/p>\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\">\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\">\n<p lang=\"en\" dir=\"ltr\">The <a href=\"https:\/\/twitter.com\/warriors?ref_src=twsrc%5Etfw\">@warriors<\/a> take home the NBA title <img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/1f3c6.png?ssl=1\" alt=\"\ud83c\udfc6\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\"><\/p>\n<p>A final look at the bracket for the 2021-22 <a href=\"https:\/\/twitter.com\/hashtag\/NBAPlayoffs?src=hash&amp;ref_src=twsrc%5Etfw\">#NBAPlayoffs<\/a> presented by Google Pixel. <a href=\"https:\/\/t.co\/IHU72Kr8AN\">pic.twitter.com\/IHU72Kr8AN<\/a><\/p>\n<p>\u2014 NBA (@NBA) <a href=\"https:\/\/twitter.com\/NBA\/status\/1537668694784065538?ref_src=twsrc%5Etfw\">June 17, 2022<\/a>\n<\/p><\/blockquote>\n<p><script async src=\"https:\/\/platform.twitter.com\/widgets.js\" charset=\"utf-8\"><\/script>\n<\/div><figcaption class=\"wp-element-caption\">Example of playoff bracket from the 2021 Playoffs<\/figcaption><\/figure>\n<p class=\"wp-block-paragraph\">This reframes the task as a <strong>regression problem<\/strong>, where the model predicts a continuous value between 0 and 1\u200a\u2014\u200arepresenting how close each team came to winning it all.<\/p>\n<p class=\"wp-block-paragraph\">In this setup, the team with the <strong>highest predicted value<\/strong> is our model\u2019s pick for the NBA Champion.<\/p>\n<p class=\"wp-block-paragraph\">This is a similar approach to the <strong>MVP prediction<\/strong> from my previous article.<\/p>\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-towards-data-science wp-block-embed-towards-data-science\" datatext=\"\">\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"rGRacAcjnu\"><p><a href=\"https:\/\/towardsdatascience.com\/predicting-the-nba-mvp-with-machine-learning-c3e5b755f42e\/\">Predicting the NBA MVP with Machine Learning<\/a><\/p><\/blockquote>\n<p><iframe loading=\"lazy\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"\u201cPredicting the NBA MVP with Machine Learning\u201d \u2014 Towards Data Science\" src=\"https:\/\/towardsdatascience.com\/predicting-the-nba-mvp-with-machine-learning-c3e5b755f42e\/embed\/#?secret=gaaLMFxDyi#?secret=rGRacAcjnu\" data-secret=\"rGRacAcjnu\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>\n<\/div>\n<\/figure>\n<h2 class=\"wp-block-heading\">Data<\/h2>\n<p class=\"wp-block-paragraph\">Basketball \u2014 and the NBA in particular \u2014 is one of the most exciting sports to work with in data science, thanks to the volume of freely available statistics. For this project, I gathered data from <a href=\"https:\/\/www.basketball-reference.com\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Basketball Reference<\/strong><\/a> using my python package <a href=\"https:\/\/github.com\/GabrielPastorello\/BRScraper\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>BRScraper<\/strong><\/a>, that allows easy access to the players\u2019 and teams data. All data collection was done in accordance with the website\u2019s guidelines and rate limits.<\/p>\n<p class=\"wp-block-paragraph\">The data used includes <strong>team-level statistics<\/strong>, <strong>final regular season standings<\/strong> (e.g., win percentage, seeding), as well as <strong>player-level statistics<\/strong> for each team (limited to players who appeared in at least 30 games) and <strong>historical playoff performance<\/strong> indicators.<\/p>\n<p class=\"wp-block-paragraph\">However, it\u2019s important to be cautious when working with <strong>raw, absolute values<\/strong>. For example, the <strong>average points per game (PPG)<\/strong> in the 2023\u201324 season was <strong>114.2<\/strong>, while in 2000\u201301 it was <strong>94.8<\/strong>\u200a\u2014\u200aan increase of nearly <strong>20%<\/strong>.<\/p>\n<p class=\"wp-block-paragraph\">This is due to a series of factors, but the fact is that the game has changed significantly over the years, and so have the metrics derived from it.<\/p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" height=\"705\" width=\"1024\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/contributor.insightmediagroup.io\/wp-content\/uploads\/2025\/04\/nba_stats_evolution-1024x705.png?resize=1024%2C705&#038;ssl=1\" alt=\"\" class=\"wp-image-601872\"><figcaption class=\"wp-element-caption\">Evolution of some per-game NBA statistics (Image by Author)<\/figcaption><\/figure>\n<p class=\"wp-block-paragraph\">To account for this shift, the approach here avoids using absolute statistics directly, opting instead for <strong>normalized, relative metrics<\/strong>. For example:<\/p>\n<ul class=\"wp-block-list\">\n<li class=\"wp-block-list-item\">Instead of a team\u2019s PPG, you can use their <strong>ranking in that season<\/strong>.<\/li>\n<li class=\"wp-block-list-item\">Instead of counting how many players average 20+ PPG, you can consider how many are in the <strong>top 10 in scoring<\/strong>, and so on.<\/li>\n<\/ul>\n<p class=\"wp-block-paragraph\">This enables the model to capture <strong>relative dominance<\/strong> within each era, making comparisons across decades more meaningful and thus permitting the inclusion of older seasons to enrich the dataset.<\/p>\n<p class=\"wp-block-paragraph\">Data from the <strong>1984 to 2024 <\/strong>seasons were used to train and test the model, totaling <strong>40 seasons<\/strong>, with a total of 70 variables.<\/p>\n<p class=\"wp-block-paragraph\">Before diving into the model itself, some interesting patterns emerge from an exploratory analysis when comparing championship teams to all playoff teams as a whole:<\/p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" height=\"704\" width=\"1024\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/contributor.insightmediagroup.io\/wp-content\/uploads\/2025\/04\/champions_vs_league-1024x704.png?resize=1024%2C704&#038;ssl=1\" alt=\"\" class=\"wp-image-601873\"><figcaption class=\"wp-element-caption\">Comparison of teams: Champions vs Rest of Playoff teams (Image by Author)<\/figcaption><\/figure>\n<p class=\"wp-block-paragraph\">Champions tend to come from the top seeds and with higher winning percentages, unsurprisingly. The team with the worst regular season record to win it all in this period was the <strong>1994\u201395 Houston Rockets<\/strong>, led by Hakeem Olajuwon, finishing 47\u201335 (.573) and entering the playoffs as only the <strong>10th best overall team<\/strong> (6th in the West).<\/p>\n<p class=\"wp-block-paragraph\">Another notable trend is that champions tend to have a slightly higher average age, suggesting that experience plays a crucial role once the playoffs begin. The youngest championship team in the database with an average of 26.6 years is the <strong>1990\u201391 Chicago Bulls<\/strong>, and the oldest is the <strong>1997\u201398 Chicago Bulls<\/strong>, with 31.2 years\u200a\u2014\u200athe first and last titles from the Michael Jordan dinasty.<\/p>\n<p class=\"wp-block-paragraph\">Similarly, teams with coaches who have been with the franchise longer also tend to find more success in the postseason.<\/p>\n<h2 class=\"wp-block-heading\">Modeling<\/h2>\n<p class=\"wp-block-paragraph\">The model used was <strong><a href=\"https:\/\/lightgbm.readthedocs.io\/en\/stable\/\">LightGBM<\/a><\/strong>, a tree-based algorithm widely recognized as one of the most effective methods for tabular data, alongside others like XGBoost. A grid search was done to identify the best hyperparameters for this specific problem.<\/p>\n<p class=\"wp-block-paragraph\">The model performance was evaluated using the root mean squared error (<strong>RMSE<\/strong>) and the coefficient of determination (<strong>R\u00b2<\/strong>).<\/p>\n<p class=\"wp-block-paragraph\">You can find the formula and explanation of each metric in my <a href=\"https:\/\/towardsdatascience.com\/predicting-the-nba-mvp-with-machine-learning-c3e5b755f42e\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>previous MVP article<\/strong><\/a>.<\/p>\n<p class=\"wp-block-paragraph\">The seasons used for training and testing were randomly selected, with the constraint of <strong>reserving the last three seasons for the test set<\/strong> in order to better assess the model\u2019s performance on more recent data. Importantly, all teams were included in the dataset \u2014 not just those that qualified for the playoffs \u2014 allowing the model to learn patterns without relying on prior knowledge of postseason qualification.<\/p>\n<h2 class=\"wp-block-heading\">Results<\/h2>\n<p class=\"wp-block-paragraph\">Here we can see a comparison between the \u201cdistributions\u201d of both the predictions and the real values. While it\u2019s technically a histogram\u200a\u2014\u200asince we\u2019re dealing with a regression problem\u200a\u2014\u200ait still works as a visual distribution because the target values range from 0 to 1. Additionally, we also display the distribution of the residual error for each prediction.<\/p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" height=\"362\" width=\"1024\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/contributor.insightmediagroup.io\/wp-content\/uploads\/2025\/04\/model_predictions-1024x362.png?resize=1024%2C362&#038;ssl=1\" alt=\"\" class=\"wp-image-601874\"><figcaption class=\"wp-element-caption\">(Image by Author)<\/figcaption><\/figure>\n<p class=\"wp-block-paragraph\">As we can see, the predictions and the real values follow a similar pattern, both concentrated near zero\u200a\u2014\u200aas most teams do not achieve high playoff success. This is further supported by the distribution of the residual errors, which is centered around zero and resembles a normal distribution. This suggests that the model is able to capture and reproduce the underlying patterns present in the data.<\/p>\n<p class=\"wp-block-paragraph\">In terms of performance metrics, the best model achieved an RMSE of 0.184 and an R\u00b2 score of 0.537 on the test dataset.<\/p>\n<p class=\"wp-block-paragraph\">An effective approach for visualizing the key variables influencing the model\u2019s predictions is through <a href=\"https:\/\/shap.readthedocs.io\/en\/latest\/index.html\" rel=\"noreferrer noopener\" target=\"_blank\"><strong>SHAP Values<\/strong><\/a>, atechnique that provides a reasonable explanation of how each feature impacts the model\u2019s predictions.<\/p>\n<p class=\"wp-block-paragraph\">Again, a deeper explanation about SHAP and how to interpret its chart can be found in <a href=\"https:\/\/towardsdatascience.com\/predicting-the-nba-mvp-with-machine-learning-c3e5b755f42e\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Predicting the NBA MVP with Machine Learning<\/strong><\/a>.<\/p>\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/contributor.insightmediagroup.io\/wp-content\/uploads\/2025\/04\/shap.png?ssl=1\" alt=\"\" class=\"wp-image-601875\"><figcaption class=\"wp-element-caption\">SHAP chart (Image by Author)<\/figcaption><\/figure>\n<p class=\"wp-block-paragraph\">From the SHAP chart, several important insights emerge:<\/p>\n<ul class=\"wp-block-list\">\n<li class=\"wp-block-list-item\">\n<strong>Seed<\/strong> and <strong>W\/L%<\/strong> rank among the top three most impactful features, highlighting the importance of team performance in the regular season.<\/li>\n<li class=\"wp-block-list-item\">Team-level stats such as <strong>Net Rating (NRtg)<\/strong>, <strong>Opponent Points Per Game (PA\/G)<\/strong>, <strong>Margin of Victory (MOV) <\/strong>and <strong>Adjusted Offensive Rating (ORtg\/A) <\/strong>also play a significant role in shaping playoff success.<\/li>\n<li class=\"wp-block-list-item\">On the player side, advanced metrics stand out: the <strong>number of players in the top 30 for Box Plus\/Minus (BPM)<\/strong> and <strong>top 3 for Win Shares per 48 Minutes (WS\/48)<\/strong> are among the most influential.<\/li>\n<\/ul>\n<p class=\"wp-block-paragraph\">Interestingly, the model also captures broader trends\u200a\u2014\u200ateams with a higher average age tend to perform better in the playoffs, and a strong showing in the previous postseason often correlates with future success. Both patterns point again to <strong>experience<\/strong> as a valuable asset in the pursuit of a championship.<\/p>\n<p class=\"wp-block-paragraph\">Let\u2019s now take a closer look at how the model performed in <strong>predicting the last three NBA champions:<\/strong><\/p>\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/contributor.insightmediagroup.io\/wp-content\/uploads\/2025\/04\/table.png?ssl=1\" alt=\"\" class=\"wp-image-601876\"><figcaption class=\"wp-element-caption\">Predictions for the last three years (Image by Author)<\/figcaption><\/figure>\n<p class=\"wp-block-paragraph\">The model correctly predicted <strong>two of the last three<\/strong> NBA champions. The only miss was in 2023, when it favored the <strong>Milwaukee Bucks<\/strong>. That season, Milwaukee had the best regular-season record at 58\u201324 (.707), but an <strong>injury <\/strong>to Giannis Antetokounmpo hurt their playoff run. The Bucks were eliminated 4\u20131 in the first round by the Miami Heat, who went on to reach the Finals\u200a\u2014\u200aa surprising and disappointing postseason exit for Milwaukee, who had claimed the championship just two years earlier.<\/p>\n<h3 class=\"wp-block-heading\">2025 Playoffs Predictions<\/h3>\n<p class=\"wp-block-paragraph\">For this upcoming 2025 playoffs, the model is predicting the <strong>Boston Celtics<\/strong> to go back-to-back, with <strong>OKC <\/strong>and <strong>Cleveland <\/strong>close behind.\u00a0<\/p>\n<p class=\"wp-block-paragraph\">Given their strong regular season (61\u201321, 2nd seed in the East) and the fact that they\u2019re the reigning champions, I tend to agree. They combine <strong>current performance<\/strong> with <strong>recent playoff success<\/strong>.<\/p>\n<p class=\"wp-block-paragraph\">Still, as we all know, anything can happen in sports\u200a\u2014\u200aand we\u2019ll only get the real answer by the end of June.<\/p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" height=\"683\" width=\"1024\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/contributor.insightmediagroup.io\/wp-content\/uploads\/2025\/04\/richard-burlton-VFvk-lSM_E-unsplash-1024x683.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-601877\"><figcaption class=\"wp-element-caption\">(Photo by <a href=\"https:\/\/unsplash.com\/@richardworks\" target=\"_blank\" rel=\"noreferrer noopener\">Richard Burlton<\/a> on <a href=\"https:\/\/unsplash.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">Unsplash<\/a>)<\/figcaption><\/figure>\n<h2 class=\"wp-block-heading\">Conclusions<\/h2>\n<p class=\"wp-block-paragraph\">This project demonstrates how machine learning can be applied to complex, dynamic environments like sports. Using a dataset spanning four decades of basketball history, the model was able to uncover meaningful patterns into what drives playoff success. Beyond prediction, tools like SHAP allowed us to interpret the model\u2019s decisions and better understand the factors that contribute to postseason success.<\/p>\n<p class=\"wp-block-paragraph\">One of the biggest challenges in this problem is accounting for <strong>injuries<\/strong>. They can completely reshape the playoff landscape\u200a\u2014\u200aparticularly when they affect star players during the playoffs or late in the regular season. Ideally, we could incorporate injury histories and availability data to better account for this. Unfortunately, consistent and structured open data on this matter\u2014 especially at the granularity needed for modeling\u200a\u2014\u200ais hard to come by. As a result, this remains one of the model\u2019s blind spots: it treats all teams at full strength, which is often not the case.<\/p>\n<p class=\"wp-block-paragraph\">While no model can perfectly predict the chaos and unpredictability of sports, this analysis shows that data-driven approaches can get close. As the 2025 playoffs unfold, it will be exciting to see how the predictions hold up\u200a\u2014\u200aand what surprises the game still has in store.<\/p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" height=\"768\" width=\"1024\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/contributor.insightmediagroup.io\/wp-content\/uploads\/2025\/04\/tim-hart-mRyMi1qsdqs-unsplash-1024x768.jpg?resize=1024%2C768&#038;ssl=1\" alt=\"\" class=\"wp-image-601878\"><figcaption class=\"wp-element-caption\">(Photo by <a href=\"https:\/\/unsplash.com\/@timhart0421\" target=\"_blank\" rel=\"noreferrer noopener\">Tim Hart<\/a> on <a href=\"https:\/\/unsplash.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">Unsplash<\/a>)<\/figcaption><\/figure>\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-dotted\">\n<p class=\"wp-block-paragraph\">I\u2019m always available on my channels (<a href=\"https:\/\/www.linkedin.com\/in\/gabriel-speranza-pastorello\/\" rel=\"noreferrer noopener\" target=\"_blank\"><strong>LinkedIn<\/strong><\/a><strong> <\/strong>and <a href=\"https:\/\/github.com\/GabrielPastorello\" rel=\"noreferrer noopener\" target=\"_blank\"><strong>GitHub<\/strong><\/a>).<\/p>\n<p class=\"wp-block-paragraph\">Thanks for your attention!<img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/1f44f.png?ssl=1\" alt=\"\ud83d\udc4f\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\"><\/p>\n<p class=\"wp-block-paragraph\"><strong>Gabriel<\/strong> <strong>Speranza Pastorello<\/strong><\/p>\n<p>The post <a href=\"https:\/\/towardsdatascience.com\/predicting-nba-champion-machine-learning\/\">Predicting the NBA Champion with Machine\u00a0Learning<\/a> appeared first on <a href=\"https:\/\/towardsdatascience.com\/\">Towards Data Science<\/a>.<\/p>\n<\/div>\n<p> \t<BR><br \/>\n <BR><\/BR><br \/>\n    Gabriel Pastorello<br \/>\n \t<BR><br \/>\n<BR><\/BR><br \/>\n<a href=\"https:\/\/towardsdatascience.com\/predicting-nba-champion-machine-learning\/\">Go to original source<\/a><br \/>\n \t<BR><br \/>\n <BR><\/BR><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Predicting the NBA Champion with Machine\u00a0Learning Every NBA season, 30 teams compete for something only one will achieve: the legacy of a championship. From power rankings to trade deadline chaos and injuries, fans and analysts alike speculate endlessly about who will raise the Larry O\u2019Brien Trophy. But what if we could go beyond the hot [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[62,83,1255,70,2472,986,2473],"tags":[2474,2475,41],"class_list":["post-3340","post","type-post","status-publish","format-standard","hentry","category-aimldsaimlds","category-data-science","category-lightgbm","category-machine-learning","category-nba","category-regression-analysis","category-sports-data-analytics","tag-champion","tag-nba","tag-what"],"_links":{"self":[{"href":"https:\/\/mailitics.com\/index.php\/wp-json\/wp\/v2\/posts\/3340"}],"collection":[{"href":"https:\/\/mailitics.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mailitics.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mailitics.com\/index.php\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/mailitics.com\/index.php\/wp-json\/wp\/v2\/comments?post=3340"}],"version-history":[{"count":0,"href":"https:\/\/mailitics.com\/index.php\/wp-json\/wp\/v2\/posts\/3340\/revisions"}],"wp:attachment":[{"href":"https:\/\/mailitics.com\/index.php\/wp-json\/wp\/v2\/media?parent=3340"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mailitics.com\/index.php\/wp-json\/wp\/v2\/categories?post=3340"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mailitics.com\/index.php\/wp-json\/wp\/v2\/tags?post=3340"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}