|
36 | 36 | "* **Pixel Classification**, also referred to as image segmentation, is another important task in which we classify each pixel of an image as belonging to a particular class. In GIS, segmentation can be used for Land Cover Classification or for extracting roads or buildings from satellite imagery.\n", |
37 | 37 | "\n", |
38 | 38 | "ArcGIS platform includes support for these tasks and has tools to help with every step of the deep learning workflow: from data labeling and preparation, to training deep learning models, deploying them for inferencing and finally disseminating results using web layers/maps and driving field activity. \n", |
39 | | - "* ArcGIS Pro includes tools for labeling features and exporting training data for deep learning workflows and has being enhanced for deploying trained models for feature extraction or classification. \n", |
40 | | - "* ArcGIS Image Server in the ArcGIS Enterprise 10.7 release has similar capabilities and allow deploying deep learning models at scale by leveraging distributed computing. \n", |
41 | | - "* ArcGIS Notebooks provide one-click access to pre-configured Jupyter Notebooks along with the necessary deep learning libraries and a gallery of starter notebooks that show how deep learning models can be easily trained and deployed.\n", |
42 | 39 | "* ArcGIS API for Python allows access to every step of the deep learning workflow in a programmatic way and is semalessly integrated with other components of the platform.\n", |
| 40 | + "* [ArcGIS Pro](https://www.esri.com/en-us/arcgis/products/arcgis-pro/overview) includes tools for labeling features and exporting training data for deep learning workflows and has being enhanced for deploying trained models for feature extraction or classification. \n", |
| 41 | + "* [ArcGIS Image Server](https://www.esri.com/en-us/arcgis/products/arcgis-image-server) in the ArcGIS Enterprise 10.7 release has similar capabilities and allow deploying deep learning models at scale by leveraging distributed computing. \n", |
| 42 | + "* [ArcGIS Notebooks](https://www.esri.com/en-us/arcgis/products/arcgis-notebook-server) provide one-click access to pre-configured Jupyter Notebooks along with the necessary deep learning libraries and a gallery of starter notebooks that show how deep learning models can be easily trained and deployed.\n", |
43 | 43 | "\n", |
44 | 44 | "## The `arcgis.learn` module\n", |
45 | 45 | "The `arcgis.learn` module in ArcGIS API for Python enable GIS analysts and geospatial data scientists to easily adopt and apply deep learning in their workflows. It enables training state-of-the-art deep learning models with a simple, intuitive API. By adopting the latest research in deep learning, such as fine tuning pretrained models on satellite imagery, fast.ai's learning rate finder and one-cycle learning, it allows for much faster training and removes guesswork in picking hyperparameters. It integrates seamlessly with the ArcGIS platform by consuming the exported training samples directly, and the models that it creates can be used directly for inferencing (object detection and pixel classification) in ArcGIS Pro and Image Server.\n", |
|
48 | 48 | "* Exporting Training Data\n", |
49 | 49 | "* Data Preparation \n", |
50 | 50 | "* Model Training\n", |
51 | | - "* Model Management\n", |
52 | | - "* Inference\n", |
| 51 | + "* Model Deployment\n", |
| 52 | + "* Model Inference\n", |
53 | 53 | "\n", |
54 | 54 | "## Prerequisites\n", |
55 | 55 | "\n", |
56 | | - "Data preparation, augmentation and model training workflows using `arcgis.learn` have a dependency on PyTorch and fast.ai deep learning libraries. They can be installed using conda as follows:\n", |
| 56 | + "* Exporting training samples can be done using both ArcGIS Pro and ArcGIS Image Server. Our guide will mainly focus on how to do it using Image Server. More information about export training data for deep learning workflow in ArcGIS Pro can be found [here](https://pro.arcgis.com/en/pro-app/tool-reference/image-analyst/export-training-data-for-deep-learning.htm). Please note that if you have already exported training samples using Pro, you can just take the data and start training using `arcgis.learn`.\n", |
57 | 57 | "\n", |
58 | | - "`conda install -c fastai -c pytorch fastai=1.0.39 pytorch=1.0.0 torchvision`" |
| 58 | + "* Data preparation, augmentation and model training workflows using `arcgis.learn` have a dependency on PyTorch and fast.ai deep learning libraries. They can be installed using conda as follows:\n", |
| 59 | + "\n", |
| 60 | + "`conda install -c fastai -c pytorch fastai=1.0.39 pytorch=1.0.0 torchvision`\n", |
| 61 | + " \n", |
| 62 | + "* The output model from ArcGIS API for Python can be used in ArcGIS Pro or Image Server for model inference. Again, our guide will be mostly about using Image Server, which can be scaled out using multiple GPU enabled nodes. Please refer to guide about [Detect Objects Using Deep Learning](https://pro.arcgis.com/en/pro-app/tool-reference/image-analyst/detect-objects-using-deep-learning.htm) and [Classify Pixels Using Deep Learning](https://pro.arcgis.com/en/pro-app/tool-reference/image-analyst/classify-pixels-using-deep-learning.htm) if you would like to do it in ArcGIS Pro." |
59 | 63 | ] |
60 | 64 | } |
61 | 65 | ], |
|
0 commit comments