{"id":3275,"date":"2023-10-29T16:12:56","date_gmt":"2023-10-29T16:12:56","guid":{"rendered":"http:\/\/optimumsportsperformance.com\/blog\/?p=3275"},"modified":"2023-10-29T16:15:16","modified_gmt":"2023-10-29T16:15:16","slug":"how-bayesian-search-theory-can-help-you-find-more-deer","status":"publish","type":"post","link":"https:\/\/optimumsportsperformance.com\/blog\/how-bayesian-search-theory-can-help-you-find-more-deer\/","title":{"rendered":"How Bayesian Search Theory Can Help You Find More Deer"},"content":{"rendered":"<p><span style=\"text-decoration: underline;\"><strong>Introduction<\/strong><\/span><\/p>\n<p>I was talking with a friend the other day who was telling me about his brother, who leads guided deer hunts in Wyoming. Typically, clients will come out for a hunt over several days and rely on him to guide them to areas of the forest where there is a high probability of seeing deer. Of course, nothing is guaranteed! It&#8217;s entirely possible to go the length of the trip and not see any deer at all. So, my friend was explaining that his brother is very good at constantly keeping an eye on the environment and his surroundings and creating a mental map in his head about the areas that will maximize his clients chances of finding deer. (There is probably an actual name for this skill, but I&#8217;m not sure what it is).<\/p>\n<p>This is an interesting problem and reminds me of <strong><span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https:\/\/en.wikipedia.org\/wiki\/Bayesian_search_theory\">Bayesian Search Theory<\/a><\/span><\/strong>, which is used to help locate objects based on prior knowledge\/information and the probability of seeing the object within a specific area given it would actually be there. This approach was most recently popularized for its use in the search for the <strong><span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https:\/\/www.npr.org\/sections\/thetwo-way\/2014\/03\/25\/294390476\/can-a-250-year-old-mathematical-theorem-find-a-missing-plane\">wreckage of Malaysian Airlines Flight 370<\/a><\/span><\/strong>.<\/p>\n<p>Let&#8217;s walk through an example of how Bayesian Search Theory works.<\/p>\n<p><span style=\"text-decoration: underline;\"><strong>Setting up the search grid<\/strong><\/span><\/p>\n<p>Let&#8217;s say our deer guide has a map that he has broken up into a 4&#215;4 grid of squares. He places prior probabilities of seeing a deer in each region given what he knows about the terrain (e.g., areas with water and deer food will have a higher probability of deer activity).<\/p>\n<p>His priors grid looks like this:<\/p>\n<pre class=\"brush: r; title: ; notranslate\" title=\"\">\r\nlibrary(tidyverse)\r\n\r\ntheme_set(theme_light())\r\n\r\n# priors for each square region looks like this\r\nmatrix(data = c(0.01, 0.02, 0.01, 0.1, 0.1, 0.03, 0.03, 0.03, \r\n                0.2, 0.2, 0.17, 0.1, 0.01, 0.01, 0.02, 0.01), \r\n       byrow = TRUE, \r\n       nrow = 4, ncol = 4) %&gt;%\r\n  as.data.frame() %&gt;%\r\n  setNames(c(&quot;1&quot;, &quot;2&quot;, &quot;3&quot;, &quot;4&quot;)) %&gt;%\r\n  pivot_longer(cols = everything(),\r\n               names_to = 'x_coord') %&gt;%\r\n  mutate(y_coord = rep(1:4, each = 4)) %&gt;%\r\n  relocate(y_coord, .before = x_coord) %&gt;%\r\n  ggplot(aes(x = x_coord, y = y_coord)) +\r\n  geom_text(aes(label = value, color = value),\r\n            size = 10) +\r\n  scale_color_gradient(low = &quot;red&quot;, high = &quot;green&quot;) +\r\n  labs(x = &quot;X Coorindates&quot;,\r\n         y = &quot;Y Coordinates&quot;,\r\n         title = &quot;Prior Probabilities of 4x4 Square Region&quot;,\r\n         color = &quot;Probability&quot;) +\r\n  theme(axis.text = element_text(size = 11, face = &quot;bold&quot;))\r\n<\/pre>\n<p><a href=\"https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-8.54.48\u202fAM.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-3276\" src=\"https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-8.54.48\u202fAM-1024x858.png\" alt=\"\" width=\"488\" height=\"409\" srcset=\"https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-8.54.48\u202fAM-1024x858.png 1024w, https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-8.54.48\u202fAM-300x251.png 300w, https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-8.54.48\u202fAM-768x643.png 768w, https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-8.54.48\u202fAM-624x523.png 624w, https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-8.54.48\u202fAM.png 1440w\" sizes=\"auto, (max-width: 488px) 100vw, 488px\" \/><\/a><\/p>\n<p>We see that the <strong>y-coordiate<\/strong> range of 3 has a high probability of deer activity. In particular, xy = (1, 3) and xy = (2, 3) seem to maximize the chances of seeing a deer.<\/p>\n<p><span style=\"text-decoration: underline;\"><strong>The likelihood grid<br \/>\n<\/strong><\/span><\/p>\n<p>The likelihood in this case describe the probability of seeing a deer in a specific square region given that a deer is actually there. <em><strong>p(Square Region | Deer)<\/strong><\/em><\/p>\n<p>To determine these likelihoods, our deer guide is constantly scouting the areas and making mental notes about what he sees. He documents certain things within each square region that would indicate deer are there. For example, deer droppings, foot prints, actually seeing some deer, and previous successful hunts in a certain region. Using this information he creates a grid of the following likelihoods:<\/p>\n<pre class=\"brush: r; title: ; notranslate\" title=\"\">\r\nmatrix(data = c(0.88, 0.82, 0.88, 0.85, 0.77, 0.65, 0.83, 0.95, \r\n                0.98, 0.97, 0.93, 0.94, 0.93, 0.79, 0.68, 0.80), \r\n       byrow = TRUE, \r\n       nrow = 4, ncol = 4) %&gt;%\r\n  as.data.frame() %&gt;%\r\n  setNames(c(&quot;1&quot;, &quot;2&quot;, &quot;3&quot;, &quot;4&quot;)) %&gt;%\r\n  pivot_longer(cols = everything(),\r\n               names_to = 'x_coord') %&gt;%\r\n  mutate(y_coord = rep(1:4, each = 4)) %&gt;%\r\n  relocate(y_coord, .before = x_coord) %&gt;%\r\n  ggplot(aes(x = x_coord, y = y_coord)) +\r\n  geom_text(aes(label = value, color = value),\r\n            size = 10) +\r\n  scale_color_gradient(low = &quot;red&quot;, high = &quot;green&quot;) +\r\n  labs(x = &quot;X Coorindates&quot;,\r\n         y = &quot;Y Coordinates&quot;,\r\n         title = &quot;Likelihoods for each 4x4 Square Region&quot;,\r\n         subtitle = &quot;p(Region | Seeing Deer)&quot;,\r\n         color = &quot;Probability&quot;) +\r\n  theme(axis.text = element_text(size = 11, face = &quot;bold&quot;))\r\n<\/pre>\n<p><a href=\"https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-8.57.34\u202fAM.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-3277\" src=\"https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-8.57.34\u202fAM-1024x846.png\" alt=\"\" width=\"440\" height=\"363\" srcset=\"https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-8.57.34\u202fAM-1024x846.png 1024w, https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-8.57.34\u202fAM-300x248.png 300w, https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-8.57.34\u202fAM-768x634.png 768w, https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-8.57.34\u202fAM-624x515.png 624w, https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-8.57.34\u202fAM.png 1448w\" sizes=\"auto, (max-width: 440px) 100vw, 440px\" \/><\/a><\/p>\n<p><span style=\"text-decoration: underline;\"><strong>Combining our prior knowledge and likelihoods<\/strong><\/span><\/p>\n<p>To make things easier, I&#8217;ll put both the priors and likelihoods into a single data frame.<\/p>\n<pre class=\"brush: r; title: ; notranslate\" title=\"\">\r\ndat &lt;- data.frame(\r\n  coords = c(&quot;1,1&quot;, &quot;2,1&quot;, &quot;3,1&quot;, &quot;4,1&quot;, &quot;1,2&quot;, &quot;2,2&quot;, &quot;3,2&quot;, &quot;4,2&quot;, &quot;1,3&quot;, &quot;2,3&quot;, &quot;3,3&quot;, &quot;4,3&quot;, &quot;1,4&quot;, &quot;2,4&quot;, &quot;3,4&quot;, &quot;4,4&quot;),\r\n  priors = c(0.01, 0.02, 0.01, 0.1, 0.1, 0.03, 0.03, 0.03, \r\n                0.2, 0.2, 0.17, 0.1, 0.01, 0.01, 0.02, 0.01),\r\n  likelihoods = c(0.88, 0.82, 0.88, 0.85, 0.77, 0.65, 0.83, 0.95, \r\n                0.98, 0.97, 0.93, 0.94, 0.93, 0.79, 0.68, 0.80))\r\n\r\ndat\r\n<\/pre>\n<p><a href=\"https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-8.58.48\u202fAM.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-3278\" src=\"https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-8.58.48\u202fAM.png\" alt=\"\" width=\"312\" height=\"440\" srcset=\"https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-8.58.48\u202fAM.png 444w, https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-8.58.48\u202fAM-213x300.png 213w\" sizes=\"auto, (max-width: 312px) 100vw, 312px\" \/><\/a><\/p>\n<p>Now he multiplies the prior and likelihood together to summarize his belief of deer in each square region.<\/p>\n<pre class=\"brush: r; title: ; notranslate\" title=\"\">\r\ndat &lt;- dat %&gt;%\r\n  mutate(posterior = round(priors * likelihoods, 2))\r\n\r\ndat %&gt;%\r\n  ggplot(aes(x = coords, y = posterior)) +\r\n  geom_col(color = &quot;black&quot;,\r\n           fill = &quot;light grey&quot;) +\r\n  scale_y_continuous(labels = scales::percent_format()) +\r\n  theme(axis.text = element_text(size = 11, face = &quot;bold&quot;))\r\n<\/pre>\n<p><a href=\"https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-9.00.50\u202fAM.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-3279\" src=\"https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-9.00.50\u202fAM-1024x844.png\" alt=\"\" width=\"568\" height=\"468\" srcset=\"https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-9.00.50\u202fAM-1024x844.png 1024w, https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-9.00.50\u202fAM-300x247.png 300w, https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-9.00.50\u202fAM-768x633.png 768w, https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-9.00.50\u202fAM-624x514.png 624w, https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-9.00.50\u202fAM.png 1456w\" sizes=\"auto, (max-width: 568px) 100vw, 568px\" \/><\/a><\/p>\n<p>As expected, squares (1,3), (2,3), and (3,3) have the highest probability of observing a deer. Those would be the first areas that our deer hunt guide would want to explore when taking new clients out.<\/p>\n<p><span style=\"text-decoration: underline;\"><strong>Updating Beliefs After Searching a Region<\/strong><\/span><\/p>\n<p>Since square (1,3) has the highest probability our deer hunt guide decides to take his new clients out there to search for deer. After one day of searching they don&#8217;t find any deer. To ensure success tomorrow, he needs to update his knowledge not only about square (1, 3) but about all of the other squares in his 4&#215;4 map.<\/p>\n<p>To update square (1, 3) we use the following equation:<\/p>\n<p style=\"text-align: center;\"><em><strong>update.posterior = prior * (1 &#8211; likelihood) \/ (1 &#8211; prior*likelihood)<\/strong><\/em><\/p>\n<pre class=\"brush: r; title: ; notranslate\" title=\"\">\r\ncoord1_3 &lt;- dat %&gt;%\r\n  filter(coords == &quot;1,3&quot;)\r\n\r\ncoord1_3$priors * (1 - coord1_3$likelihoods) \/ (1 - coord1_3$priors * coord1_3$likelihoods)\r\n<\/pre>\n<p><a href=\"https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-9.02.55\u202fAM.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-3280\" src=\"https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-9.02.55\u202fAM.png\" alt=\"\" width=\"269\" height=\"70\" srcset=\"https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-9.02.55\u202fAM.png 376w, https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-9.02.55\u202fAM-300x78.png 300w\" sizes=\"auto, (max-width: 269px) 100vw, 269px\" \/><\/a><\/p>\n<p>Thew new probability for region (1, 3) is 0.5%. Once we update that square region we can update the other regions using the following equation:<\/p>\n<p style=\"text-align: center;\"><em><strong>update.prior = prior * (1 \/ (1 &#8211; prior * likelihood))<\/strong><\/em><\/p>\n<p>We can do this for the entire data set all at once:<\/p>\n<pre class=\"brush: r; title: ; notranslate\" title=\"\">\r\ndat &lt;- dat %&gt;%\r\n  mutate(posterior2 = round(priors * (1 \/ (1 - priors*likelihoods)), 2),\r\n         posterior2 = ifelse(coords == &quot;1,3&quot;, 0.005, posterior2)) %&gt;%\r\n  mutate(updated_posterior = round(posterior2 * likelihoods, 3))\r\n\r\ndat %&gt;%\r\n  select(coords, posterior, updated_posterior) %&gt;%\r\n  pivot_longer(cols = -coords) %&gt;%\r\n  ggplot(aes(x = coords, y = value, fill = name)) +\r\n  geom_col(position = &quot;dodge&quot;) +\r\n  scale_y_continuous(labels = scales::percent_format()) +\r\n  theme(axis.text = element_text(size = 11, face = &quot;bold&quot;))\r\n\r\n\r\nmatrix(dat$updated_posterior, ncol = 4, nrow = 4, byrow = TRUE) %&gt;%\r\n  as.data.frame() %&gt;%\r\n  setNames(c(&quot;1&quot;, &quot;2&quot;, &quot;3&quot;, &quot;4&quot;)) %&gt;%\r\n  pivot_longer(cols = everything(),\r\n               names_to = 'x_coord') %&gt;%\r\n  mutate(y_coord = rep(1:4, each = 4)) %&gt;%\r\n  relocate(y_coord, .before = x_coord) %&gt;%\r\n  ggplot(aes(x = x_coord, y = y_coord)) +\r\n  geom_text(aes(label = value, color = value),\r\n            size = 10) +\r\n  scale_color_gradient(low = &quot;red&quot;, high = &quot;green&quot;) +\r\n  labs(x = &quot;X Coorindates&quot;,\r\n         y = &quot;Y Coordinates&quot;,\r\n         title = &quot;Updated Posterior for each 4x4 Square Region after searching (1,3) and\\nnot seeing deer&quot;,\r\n         color = &quot;Probability&quot;) +\r\n  theme(axis.text = element_text(size = 11, face = &quot;bold&quot;))\r\n<\/pre>\n<p><a href=\"https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-9.05.51\u202fAM.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-3281\" src=\"https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-9.05.51\u202fAM-1024x851.png\" alt=\"\" width=\"561\" height=\"466\" srcset=\"https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-9.05.51\u202fAM-1024x851.png 1024w, https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-9.05.51\u202fAM-300x249.png 300w, https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-9.05.51\u202fAM-768x638.png 768w, https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-9.05.51\u202fAM-624x519.png 624w, https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-9.05.51\u202fAM.png 1446w\" sizes=\"auto, (max-width: 561px) 100vw, 561px\" \/><\/a> <a href=\"https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-9.06.11\u202fAM.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-3282\" src=\"https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-9.06.11\u202fAM-1024x849.png\" alt=\"\" width=\"544\" height=\"451\" srcset=\"https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-9.06.11\u202fAM-1024x849.png 1024w, https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-9.06.11\u202fAM-300x249.png 300w, https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-9.06.11\u202fAM-768x637.png 768w, https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-9.06.11\u202fAM-624x517.png 624w, https:\/\/optimumsportsperformance.com\/blog\/wp-content\/uploads\/2023\/10\/Screenshot-2023-10-29-at-9.06.11\u202fAM.png 1450w\" sizes=\"auto, (max-width: 544px) 100vw, 544px\" \/><\/a><\/p>\n<p>We can see that after updating the posteriors following day 1, hist best approach is to search grid (2, 3) and (3,3) tomorrow, as the updated beliefs indicate that they have a higher probability of having a deer in them.<\/p>\n<p><span style=\"text-decoration: underline;\"><strong>Conclusion<\/strong><\/span><\/p>\n<p>We can of course continue updating after searching each region until we finally find the deer but we will stop here and allow you to play with the code and continue on if you&#8217;d like. This tutorial is just to provide a brief look into how to use Bayesian Search Theory to locate objects in various spaces, so hopefully you can use this method and apply it to other aspects of your life.<\/p>\n<p>The complete code is available on my <strong><span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https:\/\/github.com\/pw2\/How-Bayesian-Search-Theory-Can-Help-You-Find-More-Deer\">GitHub page<\/a><\/span><\/strong>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction I was talking with a friend the other day who was telling me about his brother, who leads guided deer hunts in Wyoming. Typically, clients will come out for a hunt over several days and rely on him to guide them to areas of the forest where there is a high probability of seeing [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[49],"tags":[],"class_list":["post-3275","post","type-post","status-publish","format-standard","hentry","category-bayesian-model-building"],"_links":{"self":[{"href":"https:\/\/optimumsportsperformance.com\/blog\/wp-json\/wp\/v2\/posts\/3275","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/optimumsportsperformance.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/optimumsportsperformance.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/optimumsportsperformance.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/optimumsportsperformance.com\/blog\/wp-json\/wp\/v2\/comments?post=3275"}],"version-history":[{"count":2,"href":"https:\/\/optimumsportsperformance.com\/blog\/wp-json\/wp\/v2\/posts\/3275\/revisions"}],"predecessor-version":[{"id":3284,"href":"https:\/\/optimumsportsperformance.com\/blog\/wp-json\/wp\/v2\/posts\/3275\/revisions\/3284"}],"wp:attachment":[{"href":"https:\/\/optimumsportsperformance.com\/blog\/wp-json\/wp\/v2\/media?parent=3275"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/optimumsportsperformance.com\/blog\/wp-json\/wp\/v2\/categories?post=3275"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/optimumsportsperformance.com\/blog\/wp-json\/wp\/v2\/tags?post=3275"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}