Skip to content

Commit 3f8e917

Browse files
committed
initial release notes for 1.8
1 parent 10fc9d7 commit 3f8e917

File tree

1 file changed

+152
-7
lines changed

1 file changed

+152
-7
lines changed

guide/02-api-overview/release-notes.ipynb

Lines changed: 152 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,33 +15,178 @@
1515
]
1616
},
1717
{
18-
"cell_type": "code",
19-
"execution_count": null,
18+
"cell_type": "markdown",
19+
"metadata": {},
20+
"source": [
21+
"### New Guides\n",
22+
"[How Named Entity Recognition Works](https://developers.arcgis.com/python/guide/14-deep-learning/how-named-entity-recognition-works.ipynb)"
23+
]
24+
},
25+
{
26+
"cell_type": "markdown",
27+
"metadata": {},
28+
"source": [
29+
"### New Samples\n",
30+
"[Snow Avalanche Hazard Mapping for Lake Tahoe][(https://developers.arcgis.com/python/sample-notebooks/snow_avalanche_hazard_mapping_for_lake_tahoe.ipynb\n",
31+
"[Vehicle Detection and Tracking](https://developers.arcgis.com/python/sample-notebooks/vehicle_detection_and_tracking.ipynb)\n",
32+
"[Which areas are good cougar habitat?](https://developers.arcgis.com/samples/04_gis_analysts_data_scientists/which_areas_are_good_cougar_habitat.ipynb)\n",
33+
"[Information extraction from Madison city crime incident reports using Deep Learning](https://developers.arcgis.com/samples/04_gis_analysts_data_scientists/information-extraction-from-madison-city-crime-incident-reports-using-deep-learning.ipynb)\n",
34+
"[Detecting settlements using supervised classification and deep learning](https://developers.arcgis.com/samples/04_gis_analysts_data_scientists/detecting_settlements_using_supervised_classification_and_deep_learning.ipynb)\n",
35+
"[Reconstructing 3D buildings from Aerial LiDAR with Deep Learning](https://developers.arcgis.com/samples/04_gis_analysts_data_scientists/building_reconstruction_using_mask_rcnn.ipynb)"
36+
]
37+
},
38+
{
39+
"cell_type": "markdown",
40+
"metadata": {},
41+
"source": [
42+
"#### [`arcgis.gis`](https://developers.arcgis.com/python/api-reference/arcgis.gis.toc.html#gis)\n"
43+
]
44+
},
45+
{
46+
"cell_type": "markdown",
47+
"metadata": {},
48+
"source": [
49+
"#### [`arcgis.gis.nb`](https://developers.arcgis.com/python/api-reference/arcgis.gis.server.html#module-arcgis.gis.nb)\n",
50+
"* Adds ability to [`execute_notebook()`] asynchronously with `future` parameter\n",
51+
"* Adds documentation for [`NotebookServer`](https://developers.arcgis.com/python/api-reference/arcgis.gis.server.html#notebookserver), [`NotebookManager`](https://developers.arcgis.com/python/api-reference/arcgis.gis.server.html#notebookmanager), [`Notebook`](https://developers.arcgis.com/python/api-reference/arcgis.gis.server.html#notebook), and [`Runtime`](https://developers.arcgis.com/python/api-reference/arcgis.gis.server.html#runtime)"
52+
]
53+
},
54+
{
55+
"cell_type": "markdown",
56+
"metadata": {},
57+
"source": [
58+
"#### [`arcgis.features`](https://developers.arcgis.com/python/api-reference/arcgis.features.toc.html)\n",
59+
"* Adds `Spatially Enabled DataFrame` as input for [`FeatureLayer.edit_features()`](https://developers.arcgis.com/python/api-reference/arcgis.features.toc.html#arcgis.features.FeatureLayer.edit_features) method"
60+
]
61+
},
62+
{
63+
"cell_type": "markdown",
64+
"metadata": {},
65+
"source": [
66+
"#### [`arcgis.raster`]()\n",
67+
"* Adds [`temporal_profile()`](https://developers.arcgis.com/python/api-reference/arcgis.raster.toc.html#arcgis.raster.ImageryLayer.temporal_profile) function to create time series charts"
68+
]
69+
},
70+
{
71+
"cell_type": "markdown",
2072
"metadata": {},
21-
"outputs": [],
2273
"source": []
2374
},
2475
{
25-
"cell_type": "code",
26-
"execution_count": null,
76+
"cell_type": "markdown",
77+
"metadata": {},
78+
"source": []
79+
},
80+
{
81+
"cell_type": "markdown",
82+
"metadata": {},
83+
"source": []
84+
},
85+
{
86+
"cell_type": "markdown",
2787
"metadata": {},
28-
"outputs": [],
2988
"source": []
3089
},
90+
{
91+
"cell_type": "markdown",
92+
"metadata": {},
93+
"source": [
94+
"#### [`arcgis.learn`](https://developers.arcgis.com/python/api-reference/arcgis.learn.html)\n",
95+
"* New Models:\n",
96+
" * [PointCNN](https://developers.arcgis.com/python/api-reference/arcgis.learn.html#pointcnn)\n",
97+
"* New [`export_point_dataset()`]() function to export `las` files\n",
98+
"* Adds support for additional CNN backbones to the [`MaskRCNN`](https://developers.arcgis.com/python/api-reference/arcgis.learn.html#maskrcnn) model:\n",
99+
" * `ResNet18`\n",
100+
" * `ResNet34`\n",
101+
" * `ResNet101`\n",
102+
" * `ResNet152`\n",
103+
"* Adds capability to use `Labelled Tiles` and `ImageNet` for the `dataset_type` parameter in the [`prepare_data()`](https://developers.arcgis.com/python/api-reference/arcgis.learn.html#prepare-data) function\n"
104+
]
105+
},
31106
{
32107
"cell_type": "markdown",
33108
"metadata": {},
34109
"source": [
35110
"## Fixes"
36111
]
37112
},
113+
{
114+
"cell_type": "markdown",
115+
"metadata": {},
116+
"source": [
117+
"### Guides [https://developers.arcgis.com/python/guide/]\n",
118+
"* Numberous enhancements to `Deep Learning with ArcGIS` guides\n",
119+
" * Enhancements and Prediction in Video section added to [\n",
120+
"Object Detection Workflow with `arcgis.learn`](`https://developers.arcgis.com/python/guide/object-detection/#Object-Detection-Workflow-with-arcgis.learn`)"
121+
]
122+
},
123+
{
124+
"cell_type": "markdown",
125+
"metadata": {},
126+
"source": [
127+
"### Samples\n",
128+
"* Updated [`Integrating OpenStreetMap datasets with ArcGIS`](https://developers.arcgis.com/python/sample-notebooks/osm-runner/) sample to remover reliance on `Jupyter Dashboard`"
129+
]
130+
},
131+
{
132+
"cell_type": "markdown",
133+
"metadata": {},
134+
"source": [
135+
"#### [`arcgis.gis`](https://developers.arcgis.com/python/api-reference/arcgis.gis.toc.html#gis)\n",
136+
"* Fixes [`clone_items()`](https://developers.arcgis.com/python/api-reference/arcgis.gis.toc.html#arcgis.gis.ContentManager.clone_items) between Enterprise 10.4.1 and 10.5.1\n",
137+
"* Updates [`clone_items()`](https://developers.arcgis.com/python/api-reference/arcgis.gis.toc.html#arcgis.gis.ContentManager.clone_items) "
138+
]
139+
},
140+
{
141+
"cell_type": "markdown",
142+
"metadata": {},
143+
"source": [
144+
"#### [`arcgis.gis.admin`](https://developers.arcgis.com/python/api-reference/arcgis.gis.admin.html#)\n",
145+
"* Fixes BUG-000128319 [`WebhookManager.create()`](https://developers.arcgis.com/python/api-reference/arcgis.gis.admin.html#arcgis.gis.admin.WebhookManager.create) failing when `events` parameter is list of actions"
146+
]
147+
},
38148
{
39149
"cell_type": "code",
40150
"execution_count": null,
41151
"metadata": {},
42152
"outputs": [],
43153
"source": []
44154
},
155+
{
156+
"cell_type": "markdown",
157+
"metadata": {},
158+
"source": [
159+
"#### [`arcgis.features`](https://developers.arcgis.com/python/api-reference/arcgis.features.toc.html)\n",
160+
"* Fixes [`Spatially Enabled DataFrame`](https://developers.arcgis.com/python/api-reference/arcgis.features.toc.html#geoaccessor) fails to draw if any numeric columns have null values\n",
161+
"* Fixes `FeatureLayerCollectionmanager` [`update_definition()`](https://developers.arcgis.com/python/api-reference/arcgis.features.managers.html#arcgis.features.managers.FeatureLayerCollectionManager.update_definition) and [`add_to_definition()`](https://developers.arcgis.com/python/api-reference/arcgis.features.managers.html#arcgis.features.managers.FeatureLayerCollectionManager.add_to_definition) methods on 10.8 Enterprise portals"
162+
]
163+
},
164+
{
165+
"cell_type": "markdown",
166+
"metadata": {},
167+
"source": []
168+
},
169+
{
170+
"cell_type": "markdown",
171+
"metadata": {},
172+
"source": [
173+
"#### [`arcgis.learn`](https://developers.arcgis.com/python/api-reference/arcgis.learn.html)\n",
174+
"* Fixes `save()` method framework `AttributeError` for [`arcgis.learn`]() models\n",
175+
"* Improves reporting of accuracy metrics for models\n",
176+
"* Fixes issue where `validation loss curve` was not displayed when traning for more than one epoch\n",
177+
"* Fixes `AttributeError` on user-defined `learning rate`\n",
178+
"* Fixes [`DeepLab`]() model when using multispectral imagery and the `ResNet101` backbone\n",
179+
"* Fixes [`Retinanet.predict_video()`](https://developers.arcgis.com/python/api-reference/arcgis.learn.html#arcgis.learn.RetinaNet.predict_video) function when `resize` parameter is not set\n",
180+
"* Fixes [`MaskRCNN.from_model()`]() function to properly set default backbone when inferencing\n",
181+
"* Fixes [`DeepLab.fit()`](https://developers.arcgis.com/python/api-reference/arcgis.learn.html#arcgis.learn.DeepLab.fit) and [`PSPNet.fit()`](https://developers.arcgis.com/python/api-reference/arcgis.learn.html#arcgis.learn.PSPNetClassifier.fit) methods run on objects created with respective `from_model()` methods\n",
182+
"* Fixes [`prepare_data()`](https://developers.arcgis.com/python/api-reference/arcgis.learn.html#prepare-data) when `resize_to` parameter is larger than `chip_size` causing reflection padding and scale the image to an incorrect size"
183+
]
184+
},
185+
{
186+
"cell_type": "markdown",
187+
"metadata": {},
188+
"source": []
189+
},
45190
{
46191
"cell_type": "markdown",
47192
"metadata": {},
@@ -1418,7 +1563,7 @@
14181563
"name": "python",
14191564
"nbconvert_exporter": "python",
14201565
"pygments_lexer": "ipython3",
1421-
"version": "3.6.10"
1566+
"version": "3.6.8"
14221567
},
14231568
"varInspector": {
14241569
"cols": {

0 commit comments

Comments
 (0)