{"id":8943,"date":"2019-06-05T19:04:39","date_gmt":"2019-06-05T19:04:39","guid":{"rendered":"https:\/\/charterglobal.com\/?p=8943"},"modified":"2025-06-11T08:17:12","modified_gmt":"2025-06-11T08:17:12","slug":"image-data-augmentation-and-ai","status":"publish","type":"post","link":"https:\/\/www.charterglobal.com\/image-data-augmentation-and-ai\/","title":{"rendered":"What is Image Data Augmentation &#038; How Does It Work?"},"content":{"rendered":"<p><strong>Image data augmentation<\/strong> is a technique used in machine learning and computer vision to increase the diversity of training data without actually collecting new data. It involves creating new variations of images in the existing dataset through a series of random transformations. This helps improve the performance and generalization of models by exposing them to a wider range of variations during training.<\/p>\n<h3>How Does Image Data Augmentation Work?<\/h3>\n<p><strong>Image data augmentation<\/strong> works by applying a series of random or predefined transformations to existing images. These transformations simulate various conditions and changes that an image might undergo, helping the model learn to handle real-world variations better. Here are some common augmentation techniques:<\/p>\n<ol>\n<li><strong>Geometric Transformations:<\/strong>\n<ul>\n<li><strong>Rotation<\/strong>: Rotating images by a certain degree to make the model invariant to orientation changes.<\/li>\n<li><strong>Translation<\/strong>: Shifting the image along the X or Y axis to simulate movement.<\/li>\n<li><strong>Scaling<\/strong>: Enlarging or reducing the size of the image to teach the model to recognize objects at different scales.<\/li>\n<li><strong>Shearing<\/strong>: Applying a shearing transformation to skew the image.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Flipping:<\/strong>\n<ul>\n<li><strong>Horizontal Flip<\/strong>: Flipping the image horizontally.<\/li>\n<li><strong>Vertical Flip<\/strong>: Flipping the image vertically.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Cropping:<\/strong>\n<ul>\n<li><strong>Random Cropping<\/strong>: Selecting a random portion of the image, which helps the model learn to focus on different parts of the image.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Color Transformations:<\/strong>\n<ul>\n<li><strong>Brightness Adjustment<\/strong>: Randomly changing the brightness of the image.<\/li>\n<li><strong>Contrast Adjustment<\/strong>: Varying the contrast to make the image lighter or darker.<\/li>\n<li><strong>Saturation Adjustment<\/strong>: Modifying the saturation to enhance or dull colors.<\/li>\n<li><strong>Hue Adjustment<\/strong>: Changing the hue to alter the color.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Noise Addition:<\/strong>\n<ul>\n<li><strong>Gaussian Noise<\/strong>: Adding random noise to the image to simulate poor image quality.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Blurring and Sharpening:<\/strong>\n<ul>\n<li><strong>Gaussian Blur<\/strong>: Applying a blur to the image to simulate out-of-focus images.<\/li>\n<li><strong>Sharpening<\/strong>: Increasing the sharpness to emphasize edges.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Elastic Transformations:<\/strong>\n<ul>\n<li><strong>Elastic Distortion<\/strong>: Applying random elastic distortions to the image to simulate various deformations.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n<h3>Benefits of Image Data Augmentation<\/h3>\n<ol>\n<li><strong>Improved Generalization<\/strong>: Augmentation helps models generalize better to unseen data by making them robust to various transformations and conditions.<\/li>\n<li><strong>Reduced Overfitting<\/strong>: By exposing the model to more variations, augmentation helps reduce overfitting to the training data.<\/li>\n<li><strong>Data Efficiency<\/strong>: It allows making the most out of limited datasets by artificially increasing their size and diversity.<\/li>\n<\/ol>\n<h3>Implementing Image Data Augmentation<\/h3>\n<p>Image data augmentation can be implemented using various libraries and tools in machine learning frameworks such as TensorFlow, Keras, and PyTorch. Here\u2019s a brief example using Keras:<\/p>\n<div class=\"dark bg-gray-950 rounded-md border-[0.5px] border-token-border-medium\">\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\">\n<p><code class=\"!whitespace-pre hljs language-python\"><span class=\"hljs-keyword\">from<\/span> keras.preprocessing.image <span class=\"hljs-keyword\">import<\/span> ImageDataGenerator<\/code><\/p>\n<p><span class=\"hljs-comment\"># Create an instance of the ImageDataGenerator<\/span><br \/>\ndatagen = ImageDataGenerator(<br \/>\nrotation_range=<span class=\"hljs-number\">20<\/span>,<br \/>\nwidth_shift_range=<span class=\"hljs-number\">0.2<\/span>,<br \/>\nheight_shift_range=<span class=\"hljs-number\">0.2<\/span>,<br \/>\nshear_range=<span class=\"hljs-number\">0.2<\/span>,<br \/>\nzoom_range=<span class=\"hljs-number\">0.2<\/span>,<br \/>\nhorizontal_flip=<span class=\"hljs-literal\">True<\/span>,<br \/>\nfill_mode=<span class=\"hljs-string\">&#8216;nearest&#8217;<\/span><br \/>\n)<\/p>\n<p><span class=\"hljs-comment\"># Load an example image<\/span><br \/>\n<span class=\"hljs-keyword\">from<\/span> keras.preprocessing <span class=\"hljs-keyword\">import<\/span> image<br \/>\nimg = image.load_img(<span class=\"hljs-string\">&#8216;example.jpg&#8217;<\/span>)<br \/>\nx = image.img_to_array(img)<br \/>\nx = x.reshape((<span class=\"hljs-number\">1<\/span>,) + x.shape)<\/p>\n<p><span class=\"hljs-comment\"># Generate batches of augmented images<\/span><br \/>\ni = <span class=\"hljs-number\">0<\/span><br \/>\n<span class=\"hljs-keyword\">for<\/span> batch <span class=\"hljs-keyword\">in<\/span> datagen.flow(x, batch_size=<span class=\"hljs-number\">1<\/span>, save_to_dir=<span class=\"hljs-string\">&#8216;preview&#8217;<\/span>, save_prefix=<span class=\"hljs-string\">&#8216;aug&#8217;<\/span>, save_format=<span class=\"hljs-string\">&#8216;jpeg&#8217;<\/span>):<br \/>\ni += <span class=\"hljs-number\">1<\/span><br \/>\n<span class=\"hljs-keyword\">if<\/span> i &gt; <span class=\"hljs-number\">20<\/span>:<br \/>\n<span class=\"hljs-keyword\">break<\/span> <span class=\"hljs-comment\"># Generate 20 augmented images<\/span><\/p>\n<\/div>\n<\/div>\n<p>In this example, the <code>ImageDataGenerator<\/code> is configured to apply a range of transformations to an input image, and the augmented images are saved to a directory.<\/p>\n<h3>Conclusion<\/h3>\n<p><strong>Image data augmentation<\/strong> is a powerful technique for enhancing the diversity and robustness of training datasets in computer vision tasks. By applying various transformations to existing images, it helps improve model performance and generalization, making it a crucial step in the deep learning workflow.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Image data augmentation is a technique used in machine learning and computer vision to increase the diversity of training data without actually collecting new data. [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[9],"tags":[1441,1439,219,1440,1442,129],"class_list":["post-8943","post","type-post","status-publish","format-standard","hentry","category-machine-learning","tag-computer-vision","tag-data-augmentation-techniques","tag-image-data-augmentation","tag-image-transformations","tag-improving-model-performance","tag-machine-learning"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.8 (Yoast SEO v27.8) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Image Data Augmentation &amp; AI: Boost Model Accuracy<\/title>\n<meta name=\"description\" content=\"Learn how image data augmentation\u2014flips, rotations, color jitter, GANs\u2014enhances AI models by improving generalization, reducing overfitting, and increasing training data diversity.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.charterglobal.com\/image-data-augmentation-and-ai\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Image Data Augmentation &amp; AI: Boost Model Accuracy\" \/>\n<meta property=\"og:description\" content=\"Learn how image data augmentation\u2014flips, rotations, color jitter, GANs\u2014enhances AI models by improving generalization, reducing overfitting, and increasing training data diversity.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.charterglobal.com\/image-data-augmentation-and-ai\/\" \/>\n<meta property=\"og:site_name\" content=\"Charter Global\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/charterglobalCG\" \/>\n<meta property=\"article:published_time\" content=\"2019-06-05T19:04:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-11T08:17:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.charterglobal.com\/wp-content\/uploads\/2025\/11\/link_thumbnail_CG-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"960\" \/>\n\t<meta property=\"og:image:height\" content=\"540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Charter Global\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Image Data Augmentation &amp; AI: Boost Model Accuracy\" \/>\n<meta name=\"twitter:description\" content=\"Learn how image data augmentation\u2014flips, rotations, color jitter, GANs\u2014enhances AI models by improving generalization, reducing overfitting, and increasing training data diversity.\" \/>\n<meta name=\"twitter:creator\" content=\"@CharterGlobalCG\" \/>\n<meta name=\"twitter:site\" content=\"@CharterGlobalCG\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Charter Global\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.charterglobal.com\\\/image-data-augmentation-and-ai\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.charterglobal.com\\\/image-data-augmentation-and-ai\\\/\"},\"author\":{\"name\":\"Charter Global\",\"@id\":\"https:\\\/\\\/www.charterglobal.com\\\/#\\\/schema\\\/person\\\/5a227a970b5f774c852ff1223d325ea7\"},\"headline\":\"What is Image Data Augmentation &#038; How Does It Work?\",\"datePublished\":\"2019-06-05T19:04:39+00:00\",\"dateModified\":\"2025-06-11T08:17:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.charterglobal.com\\\/image-data-augmentation-and-ai\\\/\"},\"wordCount\":553,\"publisher\":{\"@id\":\"https:\\\/\\\/www.charterglobal.com\\\/#organization\"},\"keywords\":[\"Computer vision\",\"Data augmentation techniques\",\"Image Data Augmentation\",\"Image transformations\",\"Improving model performance\",\"Machine Learning\"],\"articleSection\":[\"Machine Learning\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.charterglobal.com\\\/image-data-augmentation-and-ai\\\/\",\"url\":\"https:\\\/\\\/www.charterglobal.com\\\/image-data-augmentation-and-ai\\\/\",\"name\":\"Image Data Augmentation & AI: Boost Model Accuracy\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.charterglobal.com\\\/#website\"},\"datePublished\":\"2019-06-05T19:04:39+00:00\",\"dateModified\":\"2025-06-11T08:17:12+00:00\",\"description\":\"Learn how image data augmentation\u2014flips, rotations, color jitter, GANs\u2014enhances AI models by improving generalization, reducing overfitting, and increasing training data diversity.\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.charterglobal.com\\\/image-data-augmentation-and-ai\\\/\"]}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.charterglobal.com\\\/#website\",\"url\":\"https:\\\/\\\/www.charterglobal.com\\\/\",\"name\":\"Charter Global\",\"description\":\"Your Strategic AI &amp; Data Engineering Solutions Partner\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.charterglobal.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.charterglobal.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.charterglobal.com\\\/#organization\",\"name\":\"Charter Global\",\"url\":\"https:\\\/\\\/www.charterglobal.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.charterglobal.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.charterglobal.com\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/logo-icon-1.jpg\",\"contentUrl\":\"https:\\\/\\\/www.charterglobal.com\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/logo-icon-1.jpg\",\"width\":696,\"height\":696,\"caption\":\"Charter Global\"},\"image\":{\"@id\":\"https:\\\/\\\/www.charterglobal.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/charterglobalCG\",\"https:\\\/\\\/x.com\\\/CharterGlobalCG\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/charterglobalcg\\\/\",\"https:\\\/\\\/www.instagram.com\\\/charterglobalcg\\\/\"],\"description\":\"Charter Global is a digital solution engineering company specializing in data, agentic AI automation, and end-to-end cloud transformation for enterprise-scale innovation.\",\"email\":\"info@charterglobal.com\",\"telephone\":\"(770) 326 9933\",\"legalName\":\"Charter Global Inc.\",\"foundingDate\":\"1994-01-01\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"501\",\"maxValue\":\"1000\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.charterglobal.com\\\/#\\\/schema\\\/person\\\/5a227a970b5f774c852ff1223d325ea7\",\"name\":\"Charter Global\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2741cea6113b96d7799024f1b40c9d29b76c0b9429454cf3187cecaa3452417f?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2741cea6113b96d7799024f1b40c9d29b76c0b9429454cf3187cecaa3452417f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2741cea6113b96d7799024f1b40c9d29b76c0b9429454cf3187cecaa3452417f?s=96&d=mm&r=g\",\"caption\":\"Charter Global\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Image Data Augmentation & AI: Boost Model Accuracy","description":"Learn how image data augmentation\u2014flips, rotations, color jitter, GANs\u2014enhances AI models by improving generalization, reducing overfitting, and increasing training data diversity.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.charterglobal.com\/image-data-augmentation-and-ai\/","og_locale":"en_US","og_type":"article","og_title":"Image Data Augmentation & AI: Boost Model Accuracy","og_description":"Learn how image data augmentation\u2014flips, rotations, color jitter, GANs\u2014enhances AI models by improving generalization, reducing overfitting, and increasing training data diversity.","og_url":"https:\/\/www.charterglobal.com\/image-data-augmentation-and-ai\/","og_site_name":"Charter Global","article_publisher":"https:\/\/www.facebook.com\/charterglobalCG","article_published_time":"2019-06-05T19:04:39+00:00","article_modified_time":"2025-06-11T08:17:12+00:00","og_image":[{"width":960,"height":540,"url":"https:\/\/www.charterglobal.com\/wp-content\/uploads\/2025\/11\/link_thumbnail_CG-1.jpg","type":"image\/jpeg"}],"author":"Charter Global","twitter_card":"summary_large_image","twitter_title":"Image Data Augmentation & AI: Boost Model Accuracy","twitter_description":"Learn how image data augmentation\u2014flips, rotations, color jitter, GANs\u2014enhances AI models by improving generalization, reducing overfitting, and increasing training data diversity.","twitter_creator":"@CharterGlobalCG","twitter_site":"@CharterGlobalCG","twitter_misc":{"Written by":"Charter Global","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.charterglobal.com\/image-data-augmentation-and-ai\/#article","isPartOf":{"@id":"https:\/\/www.charterglobal.com\/image-data-augmentation-and-ai\/"},"author":{"name":"Charter Global","@id":"https:\/\/www.charterglobal.com\/#\/schema\/person\/5a227a970b5f774c852ff1223d325ea7"},"headline":"What is Image Data Augmentation &#038; How Does It Work?","datePublished":"2019-06-05T19:04:39+00:00","dateModified":"2025-06-11T08:17:12+00:00","mainEntityOfPage":{"@id":"https:\/\/www.charterglobal.com\/image-data-augmentation-and-ai\/"},"wordCount":553,"publisher":{"@id":"https:\/\/www.charterglobal.com\/#organization"},"keywords":["Computer vision","Data augmentation techniques","Image Data Augmentation","Image transformations","Improving model performance","Machine Learning"],"articleSection":["Machine Learning"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.charterglobal.com\/image-data-augmentation-and-ai\/","url":"https:\/\/www.charterglobal.com\/image-data-augmentation-and-ai\/","name":"Image Data Augmentation & AI: Boost Model Accuracy","isPartOf":{"@id":"https:\/\/www.charterglobal.com\/#website"},"datePublished":"2019-06-05T19:04:39+00:00","dateModified":"2025-06-11T08:17:12+00:00","description":"Learn how image data augmentation\u2014flips, rotations, color jitter, GANs\u2014enhances AI models by improving generalization, reducing overfitting, and increasing training data diversity.","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.charterglobal.com\/image-data-augmentation-and-ai\/"]}]},{"@type":"WebSite","@id":"https:\/\/www.charterglobal.com\/#website","url":"https:\/\/www.charterglobal.com\/","name":"Charter Global","description":"Your Strategic AI &amp; Data Engineering Solutions Partner","publisher":{"@id":"https:\/\/www.charterglobal.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.charterglobal.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.charterglobal.com\/#organization","name":"Charter Global","url":"https:\/\/www.charterglobal.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.charterglobal.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.charterglobal.com\/wp-content\/uploads\/2025\/03\/logo-icon-1.jpg","contentUrl":"https:\/\/www.charterglobal.com\/wp-content\/uploads\/2025\/03\/logo-icon-1.jpg","width":696,"height":696,"caption":"Charter Global"},"image":{"@id":"https:\/\/www.charterglobal.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/charterglobalCG","https:\/\/x.com\/CharterGlobalCG","https:\/\/www.linkedin.com\/company\/charterglobalcg\/","https:\/\/www.instagram.com\/charterglobalcg\/"],"description":"Charter Global is a digital solution engineering company specializing in data, agentic AI automation, and end-to-end cloud transformation for enterprise-scale innovation.","email":"info@charterglobal.com","telephone":"(770) 326 9933","legalName":"Charter Global Inc.","foundingDate":"1994-01-01","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"501","maxValue":"1000"}},{"@type":"Person","@id":"https:\/\/www.charterglobal.com\/#\/schema\/person\/5a227a970b5f774c852ff1223d325ea7","name":"Charter Global","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/2741cea6113b96d7799024f1b40c9d29b76c0b9429454cf3187cecaa3452417f?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/2741cea6113b96d7799024f1b40c9d29b76c0b9429454cf3187cecaa3452417f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2741cea6113b96d7799024f1b40c9d29b76c0b9429454cf3187cecaa3452417f?s=96&d=mm&r=g","caption":"Charter Global"}}]}},"_links":{"self":[{"href":"https:\/\/www.charterglobal.com\/wp-json\/wp\/v2\/posts\/8943","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.charterglobal.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.charterglobal.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.charterglobal.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.charterglobal.com\/wp-json\/wp\/v2\/comments?post=8943"}],"version-history":[{"count":5,"href":"https:\/\/www.charterglobal.com\/wp-json\/wp\/v2\/posts\/8943\/revisions"}],"predecessor-version":[{"id":18901,"href":"https:\/\/www.charterglobal.com\/wp-json\/wp\/v2\/posts\/8943\/revisions\/18901"}],"wp:attachment":[{"href":"https:\/\/www.charterglobal.com\/wp-json\/wp\/v2\/media?parent=8943"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.charterglobal.com\/wp-json\/wp\/v2\/categories?post=8943"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.charterglobal.com\/wp-json\/wp\/v2\/tags?post=8943"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}