<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Merging Location and Artificial Intelligence in Pipeline Videos</title>
    <link>https://community.esri.com/t5/pipeline-videos/merging-location-and-artificial-intelligence/m-p/976841#M6</link>
    <description>&lt;IFRAME class="embedly-embed" src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FsWbBDt30Bvs%3Ffeature%3Doembed&amp;amp;display_name=YouTube&amp;amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DsWbBDt30Bvs&amp;amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FsWbBDt30Bvs%2Fhqdefault.jpg&amp;amp;key=3b4b3cb34e044cb590554f889078322d&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube" width="854" height="480" scrolling="no" title="YouTube embed" frameborder="0" allow="autoplay; fullscreen" allowfullscreen="true"&gt;&lt;/IFRAME&gt;&lt;BR /&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.6667px;"&gt;Please enjoy the Esri Pipeline recording of the webinar titled, "Merging Location and Artificial Intelligence," held on April 7, 2020.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.6667px;"&gt;Below you will find select questions and answers from the webinar session. Thank you.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;QUESTION:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Is the AI training/learning one task at a time or can you nest or build the learning tasks?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;ANSWER:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp; It depends on which learning tasks you would like to be coupled - training a model to classify various animals like cats and dogs can be single model (you don’t need a cat model, a dog model, etc) - but for a model that does two different kinds of tasks, generally the answer is no. Model architecture selection is important for a given use case and the architectures can’t be fused, so generally tasks of a different kind should be separate.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;For example, pixel classification at high accuracy has been achieved efficiently using UNet and object detection has great performance with ResNet. It’s not possible to fuse these architectures and have a single model do the tasks, but you could sequentially call the trained models to perform their individual tasks such as using an object detection model to detect a well pad and then point a pixel classification model at the subset of the image that is the well pad to identify asset equipment like tanks and batteries.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;QUESTION:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Is there a pool of GeoAI training script that can be used, or will users need to program all unique scripts all the time?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;ANSWER:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp; It depends on what is meant by “training script.” There are three things to note:&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI style="text-indent: -.25in;"&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;The process of actually training a model is two lines of code in the ArcGIS API for Python – choose a model architecture, call the model.fit method on the instantiated architecture and that will output a trained model.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI style="text-indent: -.25in;"&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;The training process in ArcGIS Pro requires no scripting – Export Training Data for Deep Learning, Train Deep Learning Model, and Detect Objects Using Deep Learning/Classify Pixels Using Deep Learning are all ArcGIS Pro geoprocessing tools and these could be put into a workflow that is automated if your data supports that ease of use.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI style="text-indent: -.25in;"&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;There are samples for the ArcGIS API for Python at developers.arcgis.com, including a GitHub repository full of Jupyter Notebooks. Not all of those are machine learning, but several of them are. With that said, adapting these to your dataset and parameters, your model architecture, your use case will generally always be necessary.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;QUESTION:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Are there free online tutorials for this workflow?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;ANSWER:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp; Yes! Check out the ArcGIS Spatial Data Science MOOC on the Esri Academy. This has a lot of great resources for the AI/ML process from data engineering to model development to data visualization and sharing. You can also find samples for the Python API at developers.arcgis.com, several of which demonstrate our machine learning capabilities. For the specific use cases demonstrated in the video, there are no tutorial-style walkthroughs, but there are articles that describe the workflows in technical detail at medium.com/geoai.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;QUESTION:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Are other pipeline data models like PODS supported?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;ANSWER:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Yes, any of the industry data models like PODS and UPDM are supported so long as they are spatialized&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;QUESTION:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Is there a way to get an evaluation license for "ArcGIS Image Analyst" extension?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;ANSWER:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Yes, we can offer a standard evaluation license for Image Analyst; please reach out &lt;A href="mailto:jeff_allen@esri.com"&gt;Jeff Allen&lt;/A&gt; for more details.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;QUESTION:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; What is the role of Linked data in spatial analysis?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;ANSWER:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp; Linked data is a technical term that refers to a specific method of publishing interlinked datasets on the web to enable more effective semantic querying, allowing applications to more effectively utilize data pieces by connecting them to other pieces of data and thus infer meaning or logic from those pieces of data. A good example of this (and a common implementation of linked data) would be any knowledge graph. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;In spatial analysis, you might use a graph data structure that represents a linked dataset to connect semantic meaning with location. This could be as simple as associating XY coordinates with a place-name or as complex as using a combination of location, communication metadata, and financial information to link establish relationships between people (as is a common use case in the defense/intelligence/law enforcement community). This is sometimes called link analysis or network analysis and spatial components underly that analytical process.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;QUESTION:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Would it be possible to automate HCA analysis using machine learning?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;ANSWER:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Yes, machine learning can be used to detect buildings, and other locations, where pipeline releases could have greater consequences to health and safety or the environment.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;QUESTION:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Are these models available for us to use?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;ANSWER:&amp;nbsp; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;The model &lt;EM&gt;architectures &lt;/EM&gt;have been constructed and are available for use in the ArcGIS API for Python in the arcgis.learn submodule for you to train on your own datasets. However, the models that have been trained to perform specific tasks like detecting well pads or constructing road networks are not freely available. If you want Esri to provide a trained model to perform a specific task, contact us and we can discuss your requirements - we commonly provide this service to our clients.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;QUESTION:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Can you please share this presentation with me? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;ANSWER:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Yes, we have included a &lt;A href="https://www.youtube.com/watch?v=sWbBDt30Bvs&amp;amp;feature=youtu.be"&gt;link&lt;/A&gt; to the recording of the webinar.&amp;nbsp; If you would like a PDF of the slides it can be accessed &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;A href="https://esriis-my.sharepoint.com/:b:/g/personal/jeff8416_esri_com/Ea-1BwLtT9tKh9LCcYPXNUIBRUcXhRK0P0a1s1hRMxvYWw?e=sgg0fc"&gt;here&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;QUESTION:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; What's the better UPDM or PODS? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;ANSWER:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Esri pipeline data management tools are pipeline data model agnostic.&amp;nbsp; There are many reasons why an operator may choose one industry standard model over another.&amp;nbsp; Please reach out to &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;A href="mailto:jeff_allen@esri.com"&gt;Jeff Allen&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; for more information on how these models are being successfully deployed within the industry.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;QUESTION:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Does Esri have a facility data model; e.g., managing building, asset, retirement, etc., where I can download the xml? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;ANSWER:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Yes, the Esri facility data model is UPDM and it can be downloaded &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;A _jive_internal="true" href="https://community.esri.com/docs/DOC-13587-updm-2019-edition"&gt;here&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;QUESTION:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Do you have any examples of successfully applying these techniques to seabed data? The results of the &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;multibeam&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; surveys produce extensive point sets. We deal only with submarine pipelines but still have large datasets.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;ANSWER:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Although we don’t currently have an example of applying these machine learning algorithms to subsea multibeam survey data we have had success in applying these machine learning techniques to a wide array of lidar and other sensor-based datasets.&amp;nbsp; Please reach out to use if you would like to explore this use case further.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 21 Apr 2020 19:43:36 GMT</pubDate>
    <dc:creator>SarahPowell1</dc:creator>
    <dc:date>2020-04-21T19:43:36Z</dc:date>
    <item>
      <title>Merging Location and Artificial Intelligence</title>
      <link>https://community.esri.com/t5/pipeline-videos/merging-location-and-artificial-intelligence/m-p/976841#M6</link>
      <description>&lt;IFRAME class="embedly-embed" src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FsWbBDt30Bvs%3Ffeature%3Doembed&amp;amp;display_name=YouTube&amp;amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DsWbBDt30Bvs&amp;amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FsWbBDt30Bvs%2Fhqdefault.jpg&amp;amp;key=3b4b3cb34e044cb590554f889078322d&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube" width="854" height="480" scrolling="no" title="YouTube embed" frameborder="0" allow="autoplay; fullscreen" allowfullscreen="true"&gt;&lt;/IFRAME&gt;&lt;BR /&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.6667px;"&gt;Please enjoy the Esri Pipeline recording of the webinar titled, "Merging Location and Artificial Intelligence," held on April 7, 2020.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.6667px;"&gt;Below you will find select questions and answers from the webinar session. Thank you.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;QUESTION:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Is the AI training/learning one task at a time or can you nest or build the learning tasks?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;ANSWER:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp; It depends on which learning tasks you would like to be coupled - training a model to classify various animals like cats and dogs can be single model (you don’t need a cat model, a dog model, etc) - but for a model that does two different kinds of tasks, generally the answer is no. Model architecture selection is important for a given use case and the architectures can’t be fused, so generally tasks of a different kind should be separate.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;For example, pixel classification at high accuracy has been achieved efficiently using UNet and object detection has great performance with ResNet. It’s not possible to fuse these architectures and have a single model do the tasks, but you could sequentially call the trained models to perform their individual tasks such as using an object detection model to detect a well pad and then point a pixel classification model at the subset of the image that is the well pad to identify asset equipment like tanks and batteries.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;QUESTION:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Is there a pool of GeoAI training script that can be used, or will users need to program all unique scripts all the time?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;ANSWER:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp; It depends on what is meant by “training script.” There are three things to note:&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI style="text-indent: -.25in;"&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;The process of actually training a model is two lines of code in the ArcGIS API for Python – choose a model architecture, call the model.fit method on the instantiated architecture and that will output a trained model.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI style="text-indent: -.25in;"&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;The training process in ArcGIS Pro requires no scripting – Export Training Data for Deep Learning, Train Deep Learning Model, and Detect Objects Using Deep Learning/Classify Pixels Using Deep Learning are all ArcGIS Pro geoprocessing tools and these could be put into a workflow that is automated if your data supports that ease of use.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI style="text-indent: -.25in;"&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;There are samples for the ArcGIS API for Python at developers.arcgis.com, including a GitHub repository full of Jupyter Notebooks. Not all of those are machine learning, but several of them are. With that said, adapting these to your dataset and parameters, your model architecture, your use case will generally always be necessary.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;QUESTION:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Are there free online tutorials for this workflow?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;ANSWER:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp; Yes! Check out the ArcGIS Spatial Data Science MOOC on the Esri Academy. This has a lot of great resources for the AI/ML process from data engineering to model development to data visualization and sharing. You can also find samples for the Python API at developers.arcgis.com, several of which demonstrate our machine learning capabilities. For the specific use cases demonstrated in the video, there are no tutorial-style walkthroughs, but there are articles that describe the workflows in technical detail at medium.com/geoai.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;QUESTION:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Are other pipeline data models like PODS supported?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;ANSWER:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Yes, any of the industry data models like PODS and UPDM are supported so long as they are spatialized&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;QUESTION:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Is there a way to get an evaluation license for "ArcGIS Image Analyst" extension?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;ANSWER:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Yes, we can offer a standard evaluation license for Image Analyst; please reach out &lt;A href="mailto:jeff_allen@esri.com"&gt;Jeff Allen&lt;/A&gt; for more details.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;QUESTION:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; What is the role of Linked data in spatial analysis?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;ANSWER:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp; Linked data is a technical term that refers to a specific method of publishing interlinked datasets on the web to enable more effective semantic querying, allowing applications to more effectively utilize data pieces by connecting them to other pieces of data and thus infer meaning or logic from those pieces of data. A good example of this (and a common implementation of linked data) would be any knowledge graph. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;In spatial analysis, you might use a graph data structure that represents a linked dataset to connect semantic meaning with location. This could be as simple as associating XY coordinates with a place-name or as complex as using a combination of location, communication metadata, and financial information to link establish relationships between people (as is a common use case in the defense/intelligence/law enforcement community). This is sometimes called link analysis or network analysis and spatial components underly that analytical process.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;QUESTION:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Would it be possible to automate HCA analysis using machine learning?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;ANSWER:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Yes, machine learning can be used to detect buildings, and other locations, where pipeline releases could have greater consequences to health and safety or the environment.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;QUESTION:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Are these models available for us to use?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;ANSWER:&amp;nbsp; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;The model &lt;EM&gt;architectures &lt;/EM&gt;have been constructed and are available for use in the ArcGIS API for Python in the arcgis.learn submodule for you to train on your own datasets. However, the models that have been trained to perform specific tasks like detecting well pads or constructing road networks are not freely available. If you want Esri to provide a trained model to perform a specific task, contact us and we can discuss your requirements - we commonly provide this service to our clients.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;QUESTION:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Can you please share this presentation with me? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;ANSWER:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Yes, we have included a &lt;A href="https://www.youtube.com/watch?v=sWbBDt30Bvs&amp;amp;feature=youtu.be"&gt;link&lt;/A&gt; to the recording of the webinar.&amp;nbsp; If you would like a PDF of the slides it can be accessed &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;A href="https://esriis-my.sharepoint.com/:b:/g/personal/jeff8416_esri_com/Ea-1BwLtT9tKh9LCcYPXNUIBRUcXhRK0P0a1s1hRMxvYWw?e=sgg0fc"&gt;here&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;QUESTION:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; What's the better UPDM or PODS? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;ANSWER:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Esri pipeline data management tools are pipeline data model agnostic.&amp;nbsp; There are many reasons why an operator may choose one industry standard model over another.&amp;nbsp; Please reach out to &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;A href="mailto:jeff_allen@esri.com"&gt;Jeff Allen&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; for more information on how these models are being successfully deployed within the industry.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;QUESTION:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Does Esri have a facility data model; e.g., managing building, asset, retirement, etc., where I can download the xml? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;ANSWER:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Yes, the Esri facility data model is UPDM and it can be downloaded &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;A _jive_internal="true" href="https://community.esri.com/docs/DOC-13587-updm-2019-edition"&gt;here&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;QUESTION:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Do you have any examples of successfully applying these techniques to seabed data? The results of the &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;multibeam&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; surveys produce extensive point sets. We deal only with submarine pipelines but still have large datasets.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&lt;STRONG&gt;ANSWER:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt;"&gt; Although we don’t currently have an example of applying these machine learning algorithms to subsea multibeam survey data we have had success in applying these machine learning techniques to a wide array of lidar and other sensor-based datasets.&amp;nbsp; Please reach out to use if you would like to explore this use case further.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2020 19:43:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/pipeline-videos/merging-location-and-artificial-intelligence/m-p/976841#M6</guid>
      <dc:creator>SarahPowell1</dc:creator>
      <dc:date>2020-04-21T19:43:36Z</dc:date>
    </item>
  </channel>
</rss>

