<?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: Using the Label Objects for Deep Learning to export tiles for import via tensorflow.keras in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/using-the-label-objects-for-deep-learning-to/m-p/1057982#M40927</link>
    <description>&lt;P&gt;Hi Manu,&lt;/P&gt;&lt;P&gt;Tensorflow supports Tif and GeoTif in both formats.&amp;nbsp; Unet is good for land cover classification and Mark rcnn is good to got detecting building. If it's a single object you can try SSD as well.&lt;/P&gt;&lt;P&gt;Getting the error in Labeling the objects, exporting the chips, and detecting objects are mainly depending on python libraries. Please check the libraries and it's the version which you installed. If the version is not matches to the available one try to downgrade or upgrade to the relevant version and try it.&lt;/P&gt;&lt;P&gt;Here is few tips, if you wish to run outside of ArcGIS Pro:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Download and install the minconda&lt;/LI&gt;&lt;LI&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Create new env &lt;STRONG&gt;‘conda create -n arcgis -c esri arcgis_learn python=3.7.’&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Activate the arcgis by using &lt;STRONG&gt;‘conda activate arcgis’&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Optional: if require pip install the relevant libraries&lt;/STRONG&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Once your env is get activated you can start to train the model.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 14 May 2021 10:39:03 GMT</pubDate>
    <dc:creator>DrVSSKiran</dc:creator>
    <dc:date>2021-05-14T10:39:03Z</dc:date>
    <item>
      <title>Using the Label Objects for Deep Learning to export tiles for import via tensorflow.keras</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/using-the-label-objects-for-deep-learning-to/m-p/1057702#M40898</link>
      <description>&lt;P&gt;I exported tiles from a GeoTIFF for import and use with tensorflow outside ArcGIS Pro using the "Label Objects for Machine Learning" tool in ArcGIS Pro.&lt;BR /&gt;However, the file structure is different from what tf.keras.preprocessing.image_dataset_from_directory(...) expects and I also think tensorflow will not accept .tif by default. Anyone who has experience using the ArcGIS Pro "Label Objects for Machine Learning" tool in combination with subsequent import in a python session?&lt;/P&gt;</description>
      <pubDate>Thu, 13 May 2021 16:55:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/using-the-label-objects-for-deep-learning-to/m-p/1057702#M40898</guid>
      <dc:creator>Manu</dc:creator>
      <dc:date>2021-05-13T16:55:00Z</dc:date>
    </item>
    <item>
      <title>Re: Using the Label Objects for Deep Learning to export tiles for import via tensorflow.keras</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/using-the-label-objects-for-deep-learning-to/m-p/1057893#M40917</link>
      <description>&lt;P&gt;The TIF issue is easy to fix - just choose a different format when you export - PNG probably the best.&lt;/P&gt;&lt;P&gt;Import to Tensorflow\Keras generally requires some Python code to convert the images &amp;amp; labels into the internal data structure. It depends on what you are trying to do in Keras as to which export format would be best to use. What type of task are you doing: image classification, object detection, pixel classification? What model are you going to use in Keras: SingleShotDetector, FasterRCNN, MaskRCNN, Unet, etc.?&lt;/P&gt;&lt;P&gt;There will generally be some code out there that you can take and adapt to your data.&lt;/P&gt;</description>
      <pubDate>Thu, 13 May 2021 22:31:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/using-the-label-objects-for-deep-learning-to/m-p/1057893#M40917</guid>
      <dc:creator>Tim_McGinnes</dc:creator>
      <dc:date>2021-05-13T22:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: Using the Label Objects for Deep Learning to export tiles for import via tensorflow.keras</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/using-the-label-objects-for-deep-learning-to/m-p/1057967#M40926</link>
      <description>&lt;P&gt;Thanks for your answer, I am planning to use a U-Net for image segmentation and classification. I just noticed the different export options (Meta Data Format) in ArcGIS Pro that produce various data structures; I've tried a few but I have not yet gotten a similar structure from what I've seen in example CNN training on the web...&lt;/P&gt;</description>
      <pubDate>Fri, 14 May 2021 08:19:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/using-the-label-objects-for-deep-learning-to/m-p/1057967#M40926</guid>
      <dc:creator>Manu</dc:creator>
      <dc:date>2021-05-14T08:19:38Z</dc:date>
    </item>
    <item>
      <title>Re: Using the Label Objects for Deep Learning to export tiles for import via tensorflow.keras</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/using-the-label-objects-for-deep-learning-to/m-p/1057982#M40927</link>
      <description>&lt;P&gt;Hi Manu,&lt;/P&gt;&lt;P&gt;Tensorflow supports Tif and GeoTif in both formats.&amp;nbsp; Unet is good for land cover classification and Mark rcnn is good to got detecting building. If it's a single object you can try SSD as well.&lt;/P&gt;&lt;P&gt;Getting the error in Labeling the objects, exporting the chips, and detecting objects are mainly depending on python libraries. Please check the libraries and it's the version which you installed. If the version is not matches to the available one try to downgrade or upgrade to the relevant version and try it.&lt;/P&gt;&lt;P&gt;Here is few tips, if you wish to run outside of ArcGIS Pro:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Download and install the minconda&lt;/LI&gt;&lt;LI&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Create new env &lt;STRONG&gt;‘conda create -n arcgis -c esri arcgis_learn python=3.7.’&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Activate the arcgis by using &lt;STRONG&gt;‘conda activate arcgis’&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Optional: if require pip install the relevant libraries&lt;/STRONG&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Once your env is get activated you can start to train the model.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 May 2021 10:39:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/using-the-label-objects-for-deep-learning-to/m-p/1057982#M40927</guid>
      <dc:creator>DrVSSKiran</dc:creator>
      <dc:date>2021-05-14T10:39:03Z</dc:date>
    </item>
    <item>
      <title>Re: Using the Label Objects for Deep Learning to export tiles for import via tensorflow.keras</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/using-the-label-objects-for-deep-learning-to/m-p/1058248#M40958</link>
      <description>&lt;P&gt;U-Net is not something I have a lot of experience in unfortunately. I have found a couple of pages with both code and data which may help.&lt;/P&gt;&lt;P&gt;This project does image classification on satellite imagery and seems quite straightforward - it has 2 input folders with TIF files that should correspond to the Classified Tiles metadata format output from ArcGIS.&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/reachsumit/deep-unet-for-satellite-image-segmentation" target="_blank" rel="noopener"&gt;https://github.com/reachsumit/deep-unet-for-satellite-image-segmentation&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This project has a good blog post with lots of&amp;nbsp; background and github site with the code in a notebook. Same structure of 2 folders with images\masks, but not sure of file format.&lt;/P&gt;&lt;P&gt;Blog:&amp;nbsp;&lt;A href="https://towardsdatascience.com/understanding-semantic-segmentation-with-unet-6be4f42d4b47" target="_blank" rel="noopener"&gt;https://towardsdatascience.com/understanding-semantic-segmentation-with-unet-6be4f42d4b47&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Github:&amp;nbsp;&lt;A href="https://github.com/hlamba28/UNET-TGS" target="_blank" rel="noopener"&gt;https://github.com/hlamba28/UNET-TGS&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry I couldn't be of more help - but&amp;nbsp;hopefully they may assist, or at least point you in the right detection.&lt;/P&gt;</description>
      <pubDate>Fri, 14 May 2021 23:49:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/using-the-label-objects-for-deep-learning-to/m-p/1058248#M40958</guid>
      <dc:creator>Tim_McGinnes</dc:creator>
      <dc:date>2021-05-14T23:49:23Z</dc:date>
    </item>
  </channel>
</rss>

