{"id":11608,"date":"2018-08-01T11:11:46","date_gmt":"2018-08-01T11:11:46","guid":{"rendered":"http:\/\/stblog.lunaeme.com\/?p=11608"},"modified":"2023-09-20T15:39:24","modified_gmt":"2023-09-20T15:39:24","slug":"wild-data-part-one-augmentation-2","status":"publish","type":"post","link":"https:\/\/www.stratio.com\/blog\/wild-data-part-one-augmentation-2\/","title":{"rendered":"Wild Data Part 1: Augmentation"},"content":{"rendered":"<p>Let\u2019s imagine that you want to buy a new car, and you fall in love with this new car\u2019s brand. Because you really want that car, the car\u2019s brand comes out everywhere in your daily life, even though the amount of these cars remain the same. Our brain is trained to focus on what it wants to see.<\/p>\n<p><!--more--><\/p>\n<p>As we have already seen in the previous posts, Deep Learning was inspired by biological systems (<a href=\"http:\/\/blog.stratio.com\/blog\/deep-learning-neural-networks-1\/\" target=\"_blank\" rel=\"noopener noreferrer\">neurons<\/a> and <a href=\"http:\/\/blog.stratio.com\/blog\/deep-learning-3-recurrent-neural-networks-lstm\/\" target=\"_blank\" rel=\"noopener noreferrer\">memory<\/a>). Using what we learnt from Cognitive Sciences we\u2019ve replicated it somehow in an artificial world. We already highlighted that Neuroscience and Deep Learning are very different disciplines, but it is very interesting to state what similarities we find in the cognitive (biological) system with what we have learnt from the functioning of deep (artificial) Neural Networks. Addressing this knowledge would greatly help us to better understand both concepts and their motivation.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-11619 aligncenter\" src=\"http:\/\/blog.stratio.com\/wp-content\/uploads\/2018\/07\/Training-infernece.png\" alt=\"Training inference\" width=\"618\" height=\"279\"><\/p>\n<p>Ok, let\u2019s now imagine that you have a dataset that contains different cars, and like the majority of real-world dataset, are unbalanced. Therefore, <a href=\"https:\/\/petewarden.com\/2018\/05\/28\/why-you-need-to-improve-your-training-data-and-how-to-do-it\/\" target=\"_blank\" rel=\"noopener noreferrer\">you need to improve our training data<\/a>. Our dataset could contain more examples of our favorite brand, this will have an impact on the way the model predicts at the time of inference. Likewise, even if we have our dataset balanced and most of our favorite cars are the same color, the similar thing will happen. In this way, we will also get confused when we see another car of the same color because we will think that this might be our favorite car. Convolutional neural networks might have a related problem. This happens because that\u2019s how machine learning algorithms work. There are many factors here, but <a href=\"http:\/\/blog.stratio.com\/blog\/deep-learning-is-not-the-answer\/\" target=\"_blank\" rel=\"noopener noreferrer\">Deep Learning will merely learn the bias<\/a>.<\/p>\n<h2>Invariance<\/h2>\n<p>Invariance is the ability of convolutional neural networks to classify objects even when placed in different orientations. The best way to achieve this will be with data and just more data! Sometimes we are simply unable to collect more data&#8230; but we do have several mechanisms to increase a training dataset.<\/p>\n<p>Let&#8217;s first empathize with this concept from the human perspective &#8211; a biological neural network. Take a look at the next picture:<\/p>\n<figure id=\"attachment_11620\" aria-describedby=\"caption-attachment-11620\" style=\"width: 353px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-11620\" src=\"http:\/\/blog.stratio.com\/wp-content\/uploads\/2018\/07\/Dog.png\" alt=\"Dog\" width=\"353\" height=\"274\"><figcaption id=\"caption-attachment-11620\" class=\"wp-caption-text\">What do you see in this image?<\/figcaption><\/figure>\n<p>What do you see in this picture? Why is it so hard for us to identify what\u2019s in this image? This has all to do with the way we\u2019re built. Our brain has evolved to try to find logical solutions and, as we are all used to see two eyes and a mouth when we see a face, we will try to find something that will probably lead us to discover a completely normal dog with a tilted head.<\/p>\n<p>In the same way, we learnt that convolutional neural networks are invariant to:<\/p>\n<ul>\n<li>Scale? No<\/li>\n<li>Rotation? No<\/li>\n<li>Translation? Partially<\/li>\n<\/ul>\n<h2>Data Augmentation<\/h2>\n<p>Data augmentation is a basic technique to increase a dataset without new data. Although the technique can be applied in a variety of domains, it\u2019s very commonly used in computer vision, and this will be the focus of the post.<\/p>\n<figure id=\"attachment_11621\" aria-describedby=\"caption-attachment-11621\" style=\"width: 585px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-11621\" src=\"http:\/\/blog.stratio.com\/wp-content\/uploads\/2018\/07\/Training-classification.png\" alt=\"Training classification\" width=\"585\" height=\"238\"><figcaption id=\"caption-attachment-11621\" class=\"wp-caption-text\">Training of \u201cporg\u201d classification<\/figcaption><\/figure>\n<p>The benefits of data augmentation are two:<\/p>\n<ul>\n<li>The first is the ability to generate &#8216;more data&#8217; from limited data<\/li>\n<li>The second one is to avoid overfitting: For a network it is somewhat problematic to memorize a larger amount of data, as it is very important to avoid overfitting. This occurs because the model memorizes the full dataset instead of only learning the main concepts underlying the problem. To summarize, if our model is overfitting, it will not know how to generalize and, therefore, will be less efficient.<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-11622 aligncenter\" src=\"http:\/\/blog.stratio.com\/wp-content\/uploads\/2018\/07\/pasted-image-0-1.png\" alt=\"Rotation\" width=\"339\" height=\"261\"><\/p>\n<p>Take a look at the image and get creative! Mix of: translation, rotation, stretching, shearing, random erasing, adding noise, lens distortion&#8230; and go crazy!<\/p>\n<p>Moreover, there is another type of data augmentation which is also very typical. It\u2019s called: Test Time Augmentation (TTA). In this case, we need to do something similar. However, when the model has to be applied to a specific image in the test set, instead of using the image as it is for inference, the same transformed image has to be used in several ways, by calculating the average of the results obtained. Hence, accuracy could be increased.<\/p>\n<p>To conclude, it is clear that Image augmentation is simple to implement (<a href=\"http:\/\/tflearn.org\/data_augmentation\/\" target=\"_blank\" rel=\"noopener noreferrer\">tensorflow<\/a>, <a href=\"https:\/\/keras.io\/preprocessing\/image\/\" target=\"_blank\" rel=\"noopener noreferrer\">keras<\/a>, <a href=\"https:\/\/pytorch.org\/docs\/stable\/torchvision\/transforms.html\" target=\"_blank\" rel=\"noopener noreferrer\">pytorch<\/a> and <a href=\"http:\/\/imgaug.readthedocs.io\/en\/latest\/source\/modules.html\" target=\"_blank\" rel=\"noopener noreferrer\">others<\/a> make the work easier). Furthermore, we can even use it on the fly. On the other hand, as we have seen, Data Augmentation helps to prevent overfitting, by being especially useful for small datasets. It should be pointed out that <strong>you cannot use all the possible types of augmentation, which is why for better results we need to use the right kind of augmentation<\/strong>. In addition to this, you could consider to try a more complex data augmentation technique (like coordinating variables, per-pixel classification, etc). At the same time, data augmentation is not a \u201csilver bullet\u201d, its usage depends on the data and the nature of the problem, for instance diagnosing a certain disease.<\/p>\n<p>If you want to learn more about Deep Learning and Data Augmentation, take a look at this <a href=\"http:\/\/blog.stratio.com\/blog\/events\/planet-data-scientist-live-meet-the-wild-data\/\" target=\"_blank\" rel=\"noopener noreferrer\">Data Science Meetup<\/a> we organized at Campus Madrid:<\/p>\n<ul>\n<li><a href=\"https:\/\/youtu.be\/MqWZYPJqR6Q\" target=\"_blank\" rel=\"noopener noreferrer\">Video<\/a><\/li>\n<li><a href=\"https:\/\/www.slideshare.net\/Stratio\/wild-data-the-data-science-meetup\" target=\"_blank\" rel=\"noopener noreferrer\">Presentation<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Data augmentation is a basic technique to increase our dataset without new data. Although the technique can be applied in a variety of domains, it\u2019s very commonly used in Computer Vision, and this will be the focus of the post.<\/p>\n","protected":false},"author":1,"featured_media":13542,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[686],"tags":[19],"ppma_author":[795],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.9 (Yoast SEO v22.9) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Wild Data - Augmentation - Deep Learning - Blog<\/title>\n<meta name=\"description\" content=\"Data augmentation is a basic technique to increase our dataset without new data. Although the technique can be applied in a variety of domains, it\u2019s very commonly used in Computer Vision, and this will be the focus of the post.\" \/>\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.stratio.com\/blog\/wild-data-part-one-augmentation-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Wild Data Part 1: Augmentation\" \/>\n<meta property=\"og:description\" content=\"Data augmentation is a basic technique to increase our dataset without new data. Although the technique can be applied in a variety of domains, it\u2019s very commonly used in Computer Vision, and this will be the focus of the post.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.stratio.com\/blog\/wild-data-part-one-augmentation-2\/\" \/>\n<meta property=\"og:site_name\" content=\"Stratio\" \/>\n<meta property=\"article:published_time\" content=\"2018-08-01T11:11:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-09-20T15:39:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.stratio.com\/blog\/wp-content\/uploads\/2018\/08\/Wild-Data-Part-1-Augmentation.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1300\" \/>\n\t<meta property=\"og:image:height\" content=\"820\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Stratio\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@stratiobd\" \/>\n<meta name=\"twitter:site\" content=\"@stratiobd\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Stratio\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.stratio.com\/blog\/wild-data-part-one-augmentation-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.stratio.com\/blog\/wild-data-part-one-augmentation-2\/\"},\"author\":{\"name\":\"Stratio\",\"@id\":\"https:\/\/www.stratio.com\/blog\/#\/schema\/person\/d0377b199cd052b17e15c9ba44c45ab7\"},\"headline\":\"Wild Data Part 1: Augmentation\",\"datePublished\":\"2018-08-01T11:11:46+00:00\",\"dateModified\":\"2023-09-20T15:39:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.stratio.com\/blog\/wild-data-part-one-augmentation-2\/\"},\"wordCount\":886,\"publisher\":{\"@id\":\"https:\/\/www.stratio.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.stratio.com\/blog\/wild-data-part-one-augmentation-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.stratio.com\/blog\/wp-content\/uploads\/2018\/08\/Wild-Data-Part-1-Augmentation.jpg\",\"keywords\":[\"Big Data\"],\"articleSection\":[\"Product\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.stratio.com\/blog\/wild-data-part-one-augmentation-2\/\",\"url\":\"https:\/\/www.stratio.com\/blog\/wild-data-part-one-augmentation-2\/\",\"name\":\"Wild Data - Augmentation - Deep Learning - Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.stratio.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.stratio.com\/blog\/wild-data-part-one-augmentation-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.stratio.com\/blog\/wild-data-part-one-augmentation-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.stratio.com\/blog\/wp-content\/uploads\/2018\/08\/Wild-Data-Part-1-Augmentation.jpg\",\"datePublished\":\"2018-08-01T11:11:46+00:00\",\"dateModified\":\"2023-09-20T15:39:24+00:00\",\"description\":\"Data augmentation is a basic technique to increase our dataset without new data. Although the technique can be applied in a variety of domains, it\u2019s very commonly used in Computer Vision, and this will be the focus of the post.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.stratio.com\/blog\/wild-data-part-one-augmentation-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.stratio.com\/blog\/wild-data-part-one-augmentation-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.stratio.com\/blog\/wild-data-part-one-augmentation-2\/#primaryimage\",\"url\":\"https:\/\/www.stratio.com\/blog\/wp-content\/uploads\/2018\/08\/Wild-Data-Part-1-Augmentation.jpg\",\"contentUrl\":\"https:\/\/www.stratio.com\/blog\/wp-content\/uploads\/2018\/08\/Wild-Data-Part-1-Augmentation.jpg\",\"width\":1300,\"height\":820},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.stratio.com\/blog\/wild-data-part-one-augmentation-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.stratio.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Wild Data Part 1: Augmentation\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.stratio.com\/blog\/#website\",\"url\":\"https:\/\/www.stratio.com\/blog\/\",\"name\":\"Stratio Blog\",\"description\":\"Corporate blog\",\"publisher\":{\"@id\":\"https:\/\/www.stratio.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.stratio.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.stratio.com\/blog\/#organization\",\"name\":\"Stratio\",\"url\":\"https:\/\/www.stratio.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.stratio.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/stratio.com\/blog\/wp-content\/uploads\/2020\/06\/stratio-web-logo-1.png\",\"contentUrl\":\"https:\/\/stratio.com\/blog\/wp-content\/uploads\/2020\/06\/stratio-web-logo-1.png\",\"width\":260,\"height\":55,\"caption\":\"Stratio\"},\"image\":{\"@id\":\"https:\/\/www.stratio.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/stratiobd\",\"https:\/\/es.linkedin.com\/company\/stratiobd\",\"https:\/\/www.youtube.com\/c\/StratioBD\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.stratio.com\/blog\/#\/schema\/person\/d0377b199cd052b17e15c9ba44c45ab7\",\"name\":\"Stratio\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.stratio.com\/blog\/#\/schema\/person\/image\/bb38888f58c2bb664646155f78ae6ccc\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/e3387ad00609f34a56d6796400eb8191?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/e3387ad00609f34a56d6796400eb8191?s=96&d=mm&r=g\",\"caption\":\"Stratio\"},\"description\":\"Stratio guides businesses on their journey through complete #DigitalTransformation with #BigData and #AI. Stratio works worldwide for large companies and multinationals in the sectors of banking, insurance, healthcare, telco, retail, energy and media.\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Wild Data - Augmentation - Deep Learning - Blog","description":"Data augmentation is a basic technique to increase our dataset without new data. Although the technique can be applied in a variety of domains, it\u2019s very commonly used in Computer Vision, and this will be the focus of the post.","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.stratio.com\/blog\/wild-data-part-one-augmentation-2\/","og_locale":"en_US","og_type":"article","og_title":"Wild Data Part 1: Augmentation","og_description":"Data augmentation is a basic technique to increase our dataset without new data. Although the technique can be applied in a variety of domains, it\u2019s very commonly used in Computer Vision, and this will be the focus of the post.","og_url":"https:\/\/www.stratio.com\/blog\/wild-data-part-one-augmentation-2\/","og_site_name":"Stratio","article_published_time":"2018-08-01T11:11:46+00:00","article_modified_time":"2023-09-20T15:39:24+00:00","og_image":[{"width":1300,"height":820,"url":"https:\/\/www.stratio.com\/blog\/wp-content\/uploads\/2018\/08\/Wild-Data-Part-1-Augmentation.jpg","type":"image\/jpeg"}],"author":"Stratio","twitter_card":"summary_large_image","twitter_creator":"@stratiobd","twitter_site":"@stratiobd","twitter_misc":{"Written by":"Stratio","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.stratio.com\/blog\/wild-data-part-one-augmentation-2\/#article","isPartOf":{"@id":"https:\/\/www.stratio.com\/blog\/wild-data-part-one-augmentation-2\/"},"author":{"name":"Stratio","@id":"https:\/\/www.stratio.com\/blog\/#\/schema\/person\/d0377b199cd052b17e15c9ba44c45ab7"},"headline":"Wild Data Part 1: Augmentation","datePublished":"2018-08-01T11:11:46+00:00","dateModified":"2023-09-20T15:39:24+00:00","mainEntityOfPage":{"@id":"https:\/\/www.stratio.com\/blog\/wild-data-part-one-augmentation-2\/"},"wordCount":886,"publisher":{"@id":"https:\/\/www.stratio.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.stratio.com\/blog\/wild-data-part-one-augmentation-2\/#primaryimage"},"thumbnailUrl":"https:\/\/www.stratio.com\/blog\/wp-content\/uploads\/2018\/08\/Wild-Data-Part-1-Augmentation.jpg","keywords":["Big Data"],"articleSection":["Product"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.stratio.com\/blog\/wild-data-part-one-augmentation-2\/","url":"https:\/\/www.stratio.com\/blog\/wild-data-part-one-augmentation-2\/","name":"Wild Data - Augmentation - Deep Learning - Blog","isPartOf":{"@id":"https:\/\/www.stratio.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.stratio.com\/blog\/wild-data-part-one-augmentation-2\/#primaryimage"},"image":{"@id":"https:\/\/www.stratio.com\/blog\/wild-data-part-one-augmentation-2\/#primaryimage"},"thumbnailUrl":"https:\/\/www.stratio.com\/blog\/wp-content\/uploads\/2018\/08\/Wild-Data-Part-1-Augmentation.jpg","datePublished":"2018-08-01T11:11:46+00:00","dateModified":"2023-09-20T15:39:24+00:00","description":"Data augmentation is a basic technique to increase our dataset without new data. Although the technique can be applied in a variety of domains, it\u2019s very commonly used in Computer Vision, and this will be the focus of the post.","breadcrumb":{"@id":"https:\/\/www.stratio.com\/blog\/wild-data-part-one-augmentation-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.stratio.com\/blog\/wild-data-part-one-augmentation-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.stratio.com\/blog\/wild-data-part-one-augmentation-2\/#primaryimage","url":"https:\/\/www.stratio.com\/blog\/wp-content\/uploads\/2018\/08\/Wild-Data-Part-1-Augmentation.jpg","contentUrl":"https:\/\/www.stratio.com\/blog\/wp-content\/uploads\/2018\/08\/Wild-Data-Part-1-Augmentation.jpg","width":1300,"height":820},{"@type":"BreadcrumbList","@id":"https:\/\/www.stratio.com\/blog\/wild-data-part-one-augmentation-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.stratio.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Wild Data Part 1: Augmentation"}]},{"@type":"WebSite","@id":"https:\/\/www.stratio.com\/blog\/#website","url":"https:\/\/www.stratio.com\/blog\/","name":"Stratio Blog","description":"Corporate blog","publisher":{"@id":"https:\/\/www.stratio.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.stratio.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.stratio.com\/blog\/#organization","name":"Stratio","url":"https:\/\/www.stratio.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.stratio.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/stratio.com\/blog\/wp-content\/uploads\/2020\/06\/stratio-web-logo-1.png","contentUrl":"https:\/\/stratio.com\/blog\/wp-content\/uploads\/2020\/06\/stratio-web-logo-1.png","width":260,"height":55,"caption":"Stratio"},"image":{"@id":"https:\/\/www.stratio.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/stratiobd","https:\/\/es.linkedin.com\/company\/stratiobd","https:\/\/www.youtube.com\/c\/StratioBD"]},{"@type":"Person","@id":"https:\/\/www.stratio.com\/blog\/#\/schema\/person\/d0377b199cd052b17e15c9ba44c45ab7","name":"Stratio","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.stratio.com\/blog\/#\/schema\/person\/image\/bb38888f58c2bb664646155f78ae6ccc","url":"https:\/\/secure.gravatar.com\/avatar\/e3387ad00609f34a56d6796400eb8191?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e3387ad00609f34a56d6796400eb8191?s=96&d=mm&r=g","caption":"Stratio"},"description":"Stratio guides businesses on their journey through complete #DigitalTransformation with #BigData and #AI. Stratio works worldwide for large companies and multinationals in the sectors of banking, insurance, healthcare, telco, retail, energy and media."}]}},"authors":[{"term_id":795,"user_id":1,"is_guest":0,"slug":"stratioadmin","display_name":"Stratio","avatar_url":"https:\/\/secure.gravatar.com\/avatar\/e3387ad00609f34a56d6796400eb8191?s=96&d=mm&r=g","0":null,"1":"","2":"","3":"","4":"","5":"","6":"","7":"","8":""}],"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.stratio.com\/blog\/wp-json\/wp\/v2\/posts\/11608"}],"collection":[{"href":"https:\/\/www.stratio.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.stratio.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.stratio.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.stratio.com\/blog\/wp-json\/wp\/v2\/comments?post=11608"}],"version-history":[{"count":18,"href":"https:\/\/www.stratio.com\/blog\/wp-json\/wp\/v2\/posts\/11608\/revisions"}],"predecessor-version":[{"id":13543,"href":"https:\/\/www.stratio.com\/blog\/wp-json\/wp\/v2\/posts\/11608\/revisions\/13543"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.stratio.com\/blog\/wp-json\/wp\/v2\/media\/13542"}],"wp:attachment":[{"href":"https:\/\/www.stratio.com\/blog\/wp-json\/wp\/v2\/media?parent=11608"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.stratio.com\/blog\/wp-json\/wp\/v2\/categories?post=11608"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.stratio.com\/blog\/wp-json\/wp\/v2\/tags?post=11608"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.stratio.com\/blog\/wp-json\/wp\/v2\/ppma_author?post=11608"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}