{"id":2375,"date":"2018-08-27T00:00:00","date_gmt":"2018-08-27T00:00:00","guid":{"rendered":""},"modified":"2025-04-30T10:34:35","modified_gmt":"2025-04-30T17:34:35","slug":"monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning","status":"publish","type":"post","link":"https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/","title":{"rendered":"Monitoring environmental conditions near underwater datacenters using Deep Learning"},"content":{"rendered":"<p><em>This blog post is co-authored by Xiaoyong Zhu, Nile Wilson (Microsoft AI CTO Office), Ben Cutler (Project Natick), and Lucas Joppa (Microsoft Chief Environmental Officer).<\/em><\/p>\n<p>At Microsoft, we put our cloud and artificial intelligence (AI) tools in the hands of those working to solve global environmental challenges, through programs such as <a href=\"https:\/\/www.microsoft.com\/en-us\/aiforearth\/\">AI for Earth<\/a>. We also use these same tools to understand our own interaction with the environment, such as the work being done in concert with <a href=\"https:\/\/natick.research.microsoft.com\/\">Project Natick<\/a>.<\/p>\n<p><a href=\"https:\/\/natick.research.microsoft.com\/\">Project Natick<\/a> seeks to understand the benefits and difficulties in deploying subsea datacenters worldwide; it is the world&#8217;s first deployed underwater datacenter and it was designed with an emphasis on sustainability. Phase 2 extends the research accomplished in Phase 1 by deploying a full-scale datacenter module in the North Sea, powered by renewable energy. Project Natick uses AI to monitor the servers and other equipment for signs of failure and to identify any correlations between the environment and server longevity.<\/p>\n<p>Because Project Natick operates like a standard land datacenter, the computers inside can be used for machine learning to provide AI to other applications, just as in any other Microsoft datacenter. We are also using AI to monitor the surrounding aquatic environment, as a first step to understanding what impact, if any, the datacenter may have.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" title=\"image\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2018\/08\/6f634128-1775-4586-b4e9-fd6c7dfeda01.webp\" alt=\"image\" width=\"624\" height=\"351\" \/><\/p>\n<p align=\"center\"><em>Figure 1. Project Natick datacenter pre-submergence. Photo by Scott Eklund\/Red Box Pictures.<\/em><\/p>\n<h2>Monitoring marine life using object detection<\/h2>\n<p>The Project Natick datacenter is equipped with various sensors to monitor server conditions and the environment, including two underwater cameras, which are available as live video streams (check out the livestream on the <a href=\"https:\/\/natick.research.microsoft.com\/#section-live\">Project Natick homepage<\/a>). These cameras allow us to monitor the surrounding environment from two fixed locations outside the datacenter in real time.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" title=\"image\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2018\/08\/ad63f308-bed5-44ce-949b-b34a1f5e6543.webp\" alt=\"image\" width=\"574\" height=\"231\" \/><\/p>\n<p><a href=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2018\/08\/9dcac1be-8755-4740-8fa9-310316d57d42.gif\"><img loading=\"lazy\" decoding=\"async\" title=\"Natick livestream\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2018\/08\/9dcac1be-8755-4740-8fa9-310316d57d42.gif\" alt=\"Natick livestream\" width=\"214\" height=\"143\" \/><\/a><\/p>\n<p align=\"center\"><em>Figure 2. Live camera feed from Project Natick datacenter (Source: <a href=\"https:\/\/natick.research.microsoft.com\/\">Project Natick homepage<\/a>)<\/em><\/p>\n<p align=\"left\">We want to count the marine life seen by the cameras. Manually counting the marine life in each frame in the video stream requires a significant amount of effort. To solve this, we can leverage object detection to automate the monitoring and counting of marine life.<\/p>\n<p align=\"left\"><img loading=\"lazy\" decoding=\"async\" title=\"image\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2018\/08\/cfe0dd19-f4eb-46f3-af9f-305856a8929e.webp\" alt=\"image\" width=\"509\" height=\"103\" \/><\/p>\n<p align=\"center\"><em>Figure 3. From the live camera feed, we observe a variety of aquatic life, including left, ray; middle, fish; right, arrow worm<\/em><\/p>\n<p align=\"left\">In each frame, we count the number of marine creatures. We model this as an object detection problem. Object detection combines the task of classification with localization, and outputs both a category and a set of coordinates representing the bounding box for each object detected in the image. This is illustrated in Figure 4.<\/p>\n<p align=\"left\"><img loading=\"lazy\" decoding=\"async\" title=\"image\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2018\/08\/7ad926c0-b6aa-4070-bfd8-85e88803e6da.webp\" alt=\"image\" width=\"460\" height=\"212\" \/><\/p>\n<p align=\"center\"><em>Figure 4. Object detection tasks in computer vision. left, input image; right, object detection with bounding boxes<\/em><\/p>\n<h2>How to choose an object detection model<\/h2>\n<p>Over the past few years, many exciting deep learning approaches for object detection have emerged. Models such as <a href=\"https:\/\/arxiv.org\/abs\/1506.01497\">Faster R-CNN<\/a> use a two-stage procedure to first propose regions containing some object, followed by classification of the proposed region and adjusting the proposed bounding box. Using a one-stage approach, models such as You Only Look Once (YOLO) and <a href=\"https:\/\/arxiv.org\/abs\/1512.02325\">Single Shot MultiBox Detector <\/a>(SSD), or <a href=\"https:\/\/arxiv.org\/abs\/1708.02002\">RetinaNet<\/a> with focal loss, consider a fixed set of boxes for detection and skip the region proposal stage, which are usually faster compared with two-stage detectors.<\/p>\n<p>To achieve real-time object detection for videos, we need to balance between speed and accuracy. From the video stream, we observed that there are only a few types of aquatic life that come within view\u2014fish, arrow worms, and rays. The limited number of animal categories allows us to choose a relatively light-weight object detection model which can be run on CPUs.<\/p>\n<p>By comparing the speed and accuracy of different deep learning model architectures, we chose to use SSD with MobileNet as our network architecture.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" title=\"image\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2018\/08\/d7875297-9690-446f-8fc2-43f4b92956e9.webp\" alt=\"image\" width=\"507\" height=\"313\" \/><\/p>\n<p align=\"center\"><em>Figure 5. Object detection approaches (tradeoffs between accuracy and inference time). Marker shapes indicate meta-architecture and colors indicate feature extractor. Each (meta-architecture, feature extractor) pair corresponds to multiple points on this plot due to changing input sizes, stride, etc. (source)<\/em><\/p>\n<h2>An AI Oriented Architecture for environmental monitoring<\/h2>\n<p>AI Oriented Architecture (AOA) is a blueprint for enterprises to use AI to accelerate digital transformation. An AOA enables organizations to map a business solution to the set of AI tools, services and infrastructure that will enable\u00a0them to realize the business solution. In this example, we use an AI Oriented Architecture to design a deep learning solution for environmental monitoring.<\/p>\n<p>Figure 6 shows an AI Oriented Architecture for monitoring marine life near the underwater datacenter. We first save the streamed video file from Azure Media Service using OpenCV, then label the video frames using VoTT and put the labelled data in Azure Blob Storage. Once the dataset is labelled and placed in Azure Blob Storage, we start training an object detection model using Azure. After we have trained the model, we deploy the model to the Natick datacenter, so the model can run inference on the input stream directly. The result is then either posted to PowerBI or displayed directly in the UI for intuitive debugging. Each of these steps is discussed in the following sections.<\/p>\n<p align=\"center\"><img loading=\"lazy\" decoding=\"async\" title=\"image\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2018\/08\/840782a2-95b9-4514-86a2-c4af38dc362c.webp\" alt=\"image\" width=\"624\" height=\"259\" \/><\/p>\n<p align=\"center\"><em>Figure 6. AI Oriented Architecture for detecting underwater wildlife<\/em><\/p>\n<p>The key ingredients of the environment monitoring solution include the following:<\/p>\n<ul>\n<li>Dataset\n<ul>\n<li>Labelling data using the Visual Object Tagging Tool (VoTT)<\/li>\n<li>Azure <a href=\"https:\/\/azure.microsoft.com\/en-us\/services\/storage\/blobs\/\">Blob Storage<\/a> to store the dataset for easy access during training and evaluation<\/li>\n<\/ul>\n<\/li>\n<li>Tools\n<ul>\n<li>TensorFlow Object Detection API<\/li>\n<\/ul>\n<\/li>\n<li>Azure\n<ul>\n<li>Azure GPU cluster, or the CPU cluster available in Project Natick Datacenter<\/li>\n<\/ul>\n<\/li>\n<li>Development and deployment tools\n<ul>\n<li><a href=\"https:\/\/www.visualstudio.com\/downloads\/ai-tools-vs\/\">Visual Studio Tools for AI<\/a>, an extension to develop and debug models in the integrated development environment (IDE)<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<h3>Labelling data for object detection<\/h3>\n<p>The first step is to label the video files. The video streams are publicly available (<a href=\"https:\/\/aka.ms\/azuremediaplayer?url=%2F%2Fnatickmediaservices.streaming.mediaservices.windows.net%2F57320b1f-7365-436c-8e4e-9bad1345e849%2Fa5f06021-0b1e-4af9-8071-89727c774501.ism%2Fmanifest\">here<\/a> and <a href=\"https:\/\/aka.ms\/azuremediaplayer?url=%2F%2Fnatickmediaservices.streaming.mediaservices.windows.net%2F436cbbc1-6c6f-40e1-a3b3-f65baa4ecdc9%2F41f19f22-1154-4661-8d54-5adaf375d43a.ism%2Fmanifest\">here<\/a>), which can be saved to local mp4 files using OpenCV. To facilitate the labelling process, we then label the mp4 video files using the open source tool <a href=\"https:\/\/github.com\/Microsoft\/VoTT\">VoTT<\/a> developed by Microsoft. VoTT is a commonly used tool built for labelling objects in videos.<\/p>\n<p>For this problem, we scope it to monitor fish and arrow worms. We labelled 200 images in total for the two classes (arrow worms and fish), and the labelled data is available in the <a href=\"https:\/\/github.com\/Microsoft\/Project_Natick_Analysis\">GitHub repository<\/a>.<\/p>\n<p align=\"left\"><img loading=\"lazy\" decoding=\"async\" title=\"image\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2018\/08\/f34486c3-f9b2-441a-91ee-f46e8b41271c.webp\" alt=\"image\" width=\"555\" height=\"285\" \/><\/p>\n<p align=\"center\"><em>Figure 7. Sample image of the labelled file<\/em><\/p>\n<h2>Training an object detection model using Azure<\/h2>\n<p>We used TensorFlow to perform object detection. TensorFlow comes with the <a href=\"https:\/\/github.com\/tensorflow\/models\/tree\/master\/research\/object_detection\">TensorFlow Object Detection API<\/a> which has some built-in network architectures, making it easy to train a neural network to recognize underwater animals.<\/p>\n<p>Because the dataset is small (200 images in total for arrow worms and fish), the problem is how to train an accurate enough object detector with limited labelled data and avoid overfitting. We train the object detector for 1,000 steps, initialized from COCO weights, with strong data augmentation such as flipping, color adjustment (including hue, brightness, contrast, and saturation), as well as bounding box jittering, to make sure the model can generalize well under most of the conditions.<\/p>\n<p>We also use more anchor ratios, in particular 0.25:1 and 4:1, in addition to the regularly used anchor ratios (such as 2:1), to make sure the model can capture most of the animals. This is especially useful to capture arrow worms since they are long and narrow in shape.<\/p>\n<p>The code and object detection configurations are available in this <a href=\"https:\/\/github.com\/Microsoft\/Project_Natick_Analysis\">GitHub repository<\/a>.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" title=\"image\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2018\/08\/7dd99e28-0151-4cfa-a8d5-c4d799acc60d.webp\" alt=\"image\" width=\"566\" height=\"160\" \/><\/p>\n<p align=\"center\"><em>Figure 8. Training loss for the underwater creature detector<\/em><\/p>\n<h3>Deploying the model to the Project Natick datacenter<\/h3>\n<p>Another question we asked was &#8211; can we deploy the model to the Natick datacenter to monitor the wildlife teeming around the data center?<\/p>\n<p>We chose to use CPUs to process the input videos and tested locally to make sure it works well. However, the default TensorFlow pre-built binary does not have optimizations such as AVX or FMA built-in to fully utilize modern CPUs. To better utilize the CPUs, we built the TensorFlow binary from source code, turning on all the optimization for Intel CPU by following Intel\u2019s <a href=\"https:\/\/software.intel.com\/en-us\/articles\/intel-optimization-for-tensorflow-installation-guide\">documentation<\/a>. With all the optimization, we can increase the processing speed by 50 percent from around two frame per second to three frame per second. The build command is like below:<\/p>\n<pre>bazel build --config=mkl -c opt --copt=-mavx --copt=-mavx2 --copt=-mfma --copt=-mavx512f --copt=-mavx512pf --copt=-mavx512cd --copt=-mavx512er --copt=\"-DEIGEN_USE_VML\"\n\n\/\/tensorflow\/tools\/pip_package:build_pip_package<\/pre>\n<h3>Real-time environmental monitoring with Power BI<\/h3>\n<p>Environmental scientists and aquatic scientists may benefit from a more intuitive way of monitoring the statistics of the underwater datacenter, such that they can quickly gain insight as to what is going on, through powerful visualization via Power BI.<\/p>\n<p>Power BI has a notion of real-time datasets which provides the ability to accept streamed data and <a href=\"https:\/\/docs.microsoft.com\/en-us\/power-bi\/service-real-time-streaming\">update dashboards in real time<\/a>. It is intuitive to call the REST API to post data to the Power BI dashboard with a few lines of code:<\/p>\n<pre># REST API endpoint, given to you when you create an API streaming dataset\n# Will be of the format: <a href=\"https:\/\/api.powerbi.com\/beta\/\">https:\/\/api.powerbi.com\/beta\/<\/a>\/datasets\/&lt; dataset id&gt;\/rows?key=\nREST_API_URL = ' *** Your Push API URL goes here *** '\n# ensure that timestamp string is formatted properly\nnow = datetime.strftime(datetime.now(), \"%Y-%m-%dT%H:%M:%S%Z\")\n# data that we're sending to Power BI REST API\ndata = '[{{ \"timestamp\": \"{0}\", \"fish_count\": \"{1}\", \"arrow_worm_count\": \"{2}\" }}]'.format(now, fish_count, arrow_worm_count)\nreq = urllib2.Request(REST_API_URL, data)\nresponse = urllib2.urlopen(req)<\/pre>\n<p>Because the animals may move quickly, we need to carefully balance between capturing data for many frames in short succession, sending to the Power BI dashboard, and consuming compute resources. We chose to push the analyzed data (for example, fish count) to Power BI three times per second to achieve this balance.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" title=\"image\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2018\/08\/024e3c5f-09bb-492a-b835-dc258a084494.webp\" alt=\"image\" width=\"624\" height=\"174\" \/><\/p>\n<p align=\"center\"><em><a href=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2018\/08\/d78b59fd-ab95-4b57-b32e-459931e00c0f.gif\"><img loading=\"lazy\" decoding=\"async\" title=\"Natick Power BI dashboard\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2018\/08\/d78b59fd-ab95-4b57-b32e-459931e00c0f.gif\" alt=\"Natick Power BI dashboard\" width=\"573\" height=\"359\" \/><\/a><\/em><\/p>\n<p align=\"center\"><em>Figure 9. Power BI dashboard running together with the video frame. Bottom: GIF showing the E2E result<\/em><\/p>\n<h2 align=\"left\">Summary<\/h2>\n<p>Monitoring the environmental impact is an important topic, and AI can help make this process more scalable, and automated. In this post, we explained how we developed a deep learning solution for environment monitoring near the underwater data center. In this solution, we show how to ingest and store the data, and train an underwater animal detector to detect the marine life seen by the cameras. The model is then deployed to the machines in the data center to monitor the marine life. At the same time, we also explored how to analyze the video streams and leverage Power BI\u2019s streaming APIs to monitor the marine life over time.<\/p>\n<p>If you have questions or comments, please leave a message on our <a href=\"https:\/\/github.com\/Microsoft\/Project_Natick_Analysis\">GitHub repository<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>At Microsoft, we put our cloud and artificial intelligence (AI) tools in the hands of those working to solve global environmental challenges, through programs such as AI for Earth.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"ms_queue_id":[],"ep_exclude_from_search":false,"_classifai_error":"","_classifai_text_to_speech_error":"","_alt_title":"","footnotes":"","msx_community_cta_settings":[]},"categories":[1551,1491],"tags":[1819],"audience":[3057,3055,3053,3056],"content-type":[1481],"product":[1525,1552],"tech-community":[],"topic":[],"coauthors":[687],"class_list":["post-2375","post","type-post","status-publish","format-standard","hentry","category-developer-tools","category-storage","tag-datacenter","audience-data-professionals","audience-developers","audience-it-decision-makers","audience-it-implementors","content-type-thought-leadership","product-azure-blob-storage","product-visual-studio","review-flag-1680286580-543","review-flag-1680286581-295","review-flag-1-1680286581-825","review-flag-2-1680286581-601","review-flag-3-1680286581-173","review-flag-4-1680286581-250","review-flag-5-1680286581-950","review-flag-6-1680286581-909","review-flag-7-1680286581-146","review-flag-8-1680286581-263","review-flag-9-1680286581-259","review-flag-artif-1680286586-345","review-flag-lever-1680286579-649","review-flag-machi-1680286585-314","review-flag-percent"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Monitoring environmental conditions near underwater datacenters using Deep Learning | Microsoft Azure Blog<\/title>\n<meta name=\"description\" content=\"At Microsoft, we put our cloud and artificial intelligence (AI) tools in the hands of those working to solve global environmental challenges, through programs such as AI for Earth.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Monitoring environmental conditions near underwater datacenters using Deep Learning | Microsoft Azure Blog\" \/>\n<meta property=\"og:description\" content=\"At Microsoft, we put our cloud and artificial intelligence (AI) tools in the hands of those working to solve global environmental challenges, through programs such as AI for Earth.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/\" \/>\n<meta property=\"og:site_name\" content=\"Microsoft Azure Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/microsoftazure\" \/>\n<meta property=\"article:published_time\" content=\"2018-08-27T00:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-30T17:34:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2018\/08\/6f634128-1775-4586-b4e9-fd6c7dfeda01.webp\" \/>\n<meta name=\"author\" content=\"Xiaoyong Zhu\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@azure\" \/>\n<meta name=\"twitter:site\" content=\"@azure\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Xiaoyong Zhu\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/\"},\"author\":[{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/xiaoyong-zhu\/\",\"@type\":\"Person\",\"@name\":\"Xiaoyong Zhu\"}],\"headline\":\"Monitoring environmental conditions near underwater datacenters using Deep Learning\",\"datePublished\":\"2018-08-27T00:00:00+00:00\",\"dateModified\":\"2025-04-30T17:34:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/\"},\"wordCount\":1630,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2018\/08\/6f634128-1775-4586-b4e9-fd6c7dfeda01.webp\",\"keywords\":[\"Datacenter\"],\"articleSection\":[\"Developer tools\",\"Storage\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/\",\"name\":\"Monitoring environmental conditions near underwater datacenters using Deep Learning | Microsoft Azure Blog\",\"isPartOf\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2018\/08\/6f634128-1775-4586-b4e9-fd6c7dfeda01.webp\",\"datePublished\":\"2018-08-27T00:00:00+00:00\",\"dateModified\":\"2025-04-30T17:34:35+00:00\",\"description\":\"At Microsoft, we put our cloud and artificial intelligence (AI) tools in the hands of those working to solve global environmental challenges, through programs such as AI for Earth.\",\"breadcrumb\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/#primaryimage\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2018\/08\/6f634128-1775-4586-b4e9-fd6c7dfeda01.webp\",\"contentUrl\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2018\/08\/6f634128-1775-4586-b4e9-fd6c7dfeda01.webp\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog home\",\"item\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Developer tools\",\"item\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/category\/developer-tools\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Monitoring environmental conditions near underwater datacenters using Deep Learning\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#website\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/\",\"name\":\"Microsoft Azure Blog\",\"description\":\"Get the latest Azure news, updates, and announcements from the Azure blog. From product updates to hot topics, hear from the Azure experts.\",\"publisher\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization\",\"name\":\"Microsoft Azure Blog\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2024\/06\/microsoft_logo.webp\",\"contentUrl\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2024\/06\/microsoft_logo.webp\",\"width\":512,\"height\":512,\"caption\":\"Microsoft Azure Blog\"},\"image\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/microsoftazure\",\"https:\/\/x.com\/azure\",\"https:\/\/www.instagram.com\/microsoftdeveloper\/\",\"https:\/\/www.linkedin.com\/company\/16188386\",\"https:\/\/www.youtube.com\/user\/windowsazure\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/person\/c702e5edd662b328b49b7e1180cab117\",\"name\":\"shakir\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g7664e653ea371ce16eaf75e9fa8952c4\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g\",\"caption\":\"shakir\"},\"sameAs\":[\"https:\/\/azure.microsoft.com\"],\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/shakir\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Monitoring environmental conditions near underwater datacenters using Deep Learning | Microsoft Azure Blog","description":"At Microsoft, we put our cloud and artificial intelligence (AI) tools in the hands of those working to solve global environmental challenges, through programs such as AI for Earth.","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:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/","og_locale":"en_US","og_type":"article","og_title":"Monitoring environmental conditions near underwater datacenters using Deep Learning | Microsoft Azure Blog","og_description":"At Microsoft, we put our cloud and artificial intelligence (AI) tools in the hands of those working to solve global environmental challenges, through programs such as AI for Earth.","og_url":"https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/","og_site_name":"Microsoft Azure Blog","article_publisher":"https:\/\/www.facebook.com\/microsoftazure","article_published_time":"2018-08-27T00:00:00+00:00","article_modified_time":"2025-04-30T17:34:35+00:00","og_image":[{"url":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2018\/08\/6f634128-1775-4586-b4e9-fd6c7dfeda01.webp","type":"","width":"","height":""}],"author":"Xiaoyong Zhu","twitter_card":"summary_large_image","twitter_creator":"@azure","twitter_site":"@azure","twitter_misc":{"Written by":"Xiaoyong Zhu","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/#article","isPartOf":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/"},"author":[{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/xiaoyong-zhu\/","@type":"Person","@name":"Xiaoyong Zhu"}],"headline":"Monitoring environmental conditions near underwater datacenters using Deep Learning","datePublished":"2018-08-27T00:00:00+00:00","dateModified":"2025-04-30T17:34:35+00:00","mainEntityOfPage":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/"},"wordCount":1630,"commentCount":0,"publisher":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization"},"image":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/#primaryimage"},"thumbnailUrl":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2018\/08\/6f634128-1775-4586-b4e9-fd6c7dfeda01.webp","keywords":["Datacenter"],"articleSection":["Developer tools","Storage"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/","name":"Monitoring environmental conditions near underwater datacenters using Deep Learning | Microsoft Azure Blog","isPartOf":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/#primaryimage"},"image":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/#primaryimage"},"thumbnailUrl":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2018\/08\/6f634128-1775-4586-b4e9-fd6c7dfeda01.webp","datePublished":"2018-08-27T00:00:00+00:00","dateModified":"2025-04-30T17:34:35+00:00","description":"At Microsoft, we put our cloud and artificial intelligence (AI) tools in the hands of those working to solve global environmental challenges, through programs such as AI for Earth.","breadcrumb":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/#primaryimage","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2018\/08\/6f634128-1775-4586-b4e9-fd6c7dfeda01.webp","contentUrl":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2018\/08\/6f634128-1775-4586-b4e9-fd6c7dfeda01.webp"},{"@type":"BreadcrumbList","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/monitoring-environmental-conditions-near-underwater-datacenters-using-deep-learning\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog home","item":"https:\/\/azure.microsoft.com\/en-us\/blog\/"},{"@type":"ListItem","position":2,"name":"Developer tools","item":"https:\/\/azure.microsoft.com\/en-us\/blog\/category\/developer-tools\/"},{"@type":"ListItem","position":3,"name":"Monitoring environmental conditions near underwater datacenters using Deep Learning"}]},{"@type":"WebSite","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#website","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/","name":"Microsoft Azure Blog","description":"Get the latest Azure news, updates, and announcements from the Azure blog. From product updates to hot topics, hear from the Azure experts.","publisher":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/azure.microsoft.com\/en-us\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization","name":"Microsoft Azure Blog","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2024\/06\/microsoft_logo.webp","contentUrl":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2024\/06\/microsoft_logo.webp","width":512,"height":512,"caption":"Microsoft Azure Blog"},"image":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/microsoftazure","https:\/\/x.com\/azure","https:\/\/www.instagram.com\/microsoftdeveloper\/","https:\/\/www.linkedin.com\/company\/16188386","https:\/\/www.youtube.com\/user\/windowsazure"]},{"@type":"Person","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/person\/c702e5edd662b328b49b7e1180cab117","name":"shakir","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g7664e653ea371ce16eaf75e9fa8952c4","url":"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g","caption":"shakir"},"sameAs":["https:\/\/azure.microsoft.com"],"url":"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/shakir\/"}]}},"msxcm_display_generated_audio":false,"msxcm_animated_featured_image":null,"distributor_meta":false,"distributor_terms":false,"distributor_media":false,"distributor_original_site_name":"Microsoft Azure Blog","distributor_original_site_url":"https:\/\/azure.microsoft.com\/en-us\/blog","push-errors":false,"_links":{"self":[{"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts\/2375","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/comments?post=2375"}],"version-history":[{"count":1,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts\/2375\/revisions"}],"predecessor-version":[{"id":40093,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts\/2375\/revisions\/40093"}],"wp:attachment":[{"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/media?parent=2375"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/categories?post=2375"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/tags?post=2375"},{"taxonomy":"audience","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/audience?post=2375"},{"taxonomy":"content-type","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/content-type?post=2375"},{"taxonomy":"product","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/product?post=2375"},{"taxonomy":"tech-community","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/tech-community?post=2375"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/topic?post=2375"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/coauthors?post=2375"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}