<?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 Re: How to use arcgis.learn.ChangeDetector with ArcGIS Pro? in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-learn-changedetector-with-arcgis/m-p/1017157#M36029</link>
    <description>&lt;P&gt;Hi there,&amp;nbsp;I have tried the method you said. I train the model with arcgis.learn and inference with arcgis.learn.ChangeDetector.predict function.So it means that we complete this DeepLearning work using arcgis.learn framework&amp;nbsp; instead of ArcGIS Pro.And another question is that there is not inferrence GP tool for ChangeDetector in ArcGIS Pro?&lt;span class="lia-unicode-emoji" title=":grinning_face_with_sweat:"&gt;😅&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Whatever,thanks a alot for&amp;nbsp;&lt;SPAN&gt;answering my before.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 15 Jan 2021 03:40:55 GMT</pubDate>
    <dc:creator>LinoSun</dc:creator>
    <dc:date>2021-01-15T03:40:55Z</dc:date>
    <item>
      <title>How to use arcgis.learn.ChangeDetector with ArcGIS Pro?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-learn-changedetector-with-arcgis/m-p/1016278#M35941</link>
      <description>&lt;P&gt;How to use arcgis.learn.ChangeDetector with ArcGIS Pro?&lt;/P&gt;&lt;P&gt;Hi everyone,I notice that there is a new model in ArcGIS API for Python,arcgis.learn.ChangeDetector.But after a long time of thinking, I still don’t know how to use gp tool `Export Training Data for DeepLearning ` to export training data which format could be used for arcgis.learn.ChangeDetector model, as this work needs two imagery.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face_with_big_eyes:"&gt;😃&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Guys who can share me a sample notebook which using arcgis.learn.ChangeDetector with ArcGIS Pro.&lt;/P&gt;&lt;P&gt;Thanks a lot.&lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yours Lino. Waiting for you!&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jan 2021 07:17:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-learn-changedetector-with-arcgis/m-p/1016278#M35941</guid>
      <dc:creator>LinoSun</dc:creator>
      <dc:date>2021-01-13T07:17:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to use arcgis.learn.ChangeDetector with ArcGIS Pro?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-learn-changedetector-with-arcgis/m-p/1017146#M36028</link>
      <description>&lt;P&gt;Browsing through the source code shows that it requires a data folder with 3 subfolders (images_before, images_after, labels). I presume the images should have the same name in each folder. The label images should use black (RGB 0,0,0) for No Change and white (RGB 255,255,255) for Change.&lt;/P&gt;&lt;P&gt;There is a link to the research paper in the help:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.mdpi.com/2072-4292/12/10/1662/htm" target="_blank" rel="noopener"&gt;https://www.mdpi.com/2072-4292/12/10/1662/htm&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From the research paper you can find links to a sample change detection training dataset on GitHub:&lt;/P&gt;&lt;P&gt;&lt;A href="https://justchenhao.github.io/LEVIR/" target="_blank" rel="noopener"&gt;https://justchenhao.github.io/LEVIR/&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you download the files, just create the required subfolders listed above and copy the relevant images into each one.&lt;/P&gt;&lt;P&gt;I have managed to get it training in a notebook, but the results are very underwhelming so far. The sample images above are 1024x1024 with lots of No Change and I think that may be causing issues.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;from arcgis.learn import ChangeDetector, prepare_data
data_path = r'&amp;lt;path_to_data_folder&amp;gt;'
data = prepare_data(data_path, batch_size=1, dataset_type='ChangeDetection')
model = ChangeDetector(data)
model.fit(10, lr=1e-4)
model.show_results()
model.save(r'&amp;lt;path_to_data_folder&amp;gt;',save_inference_file=True)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jan 2021 02:28:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-learn-changedetector-with-arcgis/m-p/1017146#M36028</guid>
      <dc:creator>Tim_McGinnes</dc:creator>
      <dc:date>2021-01-15T02:28:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to use arcgis.learn.ChangeDetector with ArcGIS Pro?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-learn-changedetector-with-arcgis/m-p/1017157#M36029</link>
      <description>&lt;P&gt;Hi there,&amp;nbsp;I have tried the method you said. I train the model with arcgis.learn and inference with arcgis.learn.ChangeDetector.predict function.So it means that we complete this DeepLearning work using arcgis.learn framework&amp;nbsp; instead of ArcGIS Pro.And another question is that there is not inferrence GP tool for ChangeDetector in ArcGIS Pro?&lt;span class="lia-unicode-emoji" title=":grinning_face_with_sweat:"&gt;😅&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Whatever,thanks a alot for&amp;nbsp;&lt;SPAN&gt;answering my before.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jan 2021 03:40:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-learn-changedetector-with-arcgis/m-p/1017157#M36029</guid>
      <dc:creator>LinoSun</dc:creator>
      <dc:date>2021-01-15T03:40:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to use arcgis.learn.ChangeDetector with ArcGIS Pro?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-learn-changedetector-with-arcgis/m-p/1017754#M36102</link>
      <description>&lt;P&gt;Correct, this is only possible in arcgis.learn at the moment. It takes a while for the deep learning model types to be useable in the ArcGIS Pro tools, so it may be there in a future release.&lt;/P&gt;&lt;P&gt;I did manage to find a page about ChangeDetection in the Python API Guide in GitHub, although it hasn't made it to the actual website yet:&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Esri/arcgis-python-api/blob/master/guide/14-deep-learning/how_change_detection_works.ipynb" target="_blank" rel="noopener"&gt;https://github.com/Esri/arcgis-python-api/blob/master/guide/14-deep-learning/how_change_detection_works.ipynb&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jan 2021 20:33:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-learn-changedetector-with-arcgis/m-p/1017754#M36102</guid>
      <dc:creator>Tim_McGinnes</dc:creator>
      <dc:date>2021-01-18T20:33:42Z</dc:date>
    </item>
  </channel>
</rss>

