Skip to content

Commit 7d95ec8

Browse files
author
Perry
committed
cleaned up everything again
1 parent cdc5f40 commit 7d95ec8

7 files changed

Lines changed: 880 additions & 156 deletions

File tree

docs/examples/automated_geotagging/automated_geotagging_fixed_tilt_site.ipynb

Lines changed: 103 additions & 34 deletions
Large diffs are not rendered by default.

docs/examples/automated_geotagging/automated_geotagging_tracking_site.ipynb

Lines changed: 20 additions & 18 deletions
Large diffs are not rendered by default.

docs/examples/extreme_weather/Austin_hail_damage_example.ipynb

Lines changed: 6 additions & 36 deletions
Large diffs are not rendered by default.

docs/examples/extreme_weather/Hurricane_damage_example.ipynb

Lines changed: 11 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -2,39 +2,11 @@
22
"cells": [
33
{
44
"cell_type": "code",
5-
"execution_count": 1,
5+
"execution_count": 7,
66
"metadata": {
77
"scrolled": true
88
},
9-
"outputs": [
10-
{
11-
"name": "stderr",
12-
"output_type": "stream",
13-
"text": [
14-
"C:\\Users\\kperry\\.conda\\envs\\deep-learning\\Lib\\site-packages\\dash\\_jupyter.py:30: DeprecationWarning: The `ipykernel.comm.Comm` class has been deprecated. Please use the `comm` module instead.For creating comms, use the function `from comm import create_comm`.\n",
15-
" _dash_comm = Comm(target_name=\"dash\")\n"
16-
]
17-
},
18-
{
19-
"name": "stdout",
20-
"output_type": "stream",
21-
"text": [
22-
"Jupyter environment detected. Enabling Open3D WebVisualizer.\n",
23-
"[Open3D INFO] WebRTC GUI backend enabled.\n",
24-
"[Open3D INFO] WebRTCWindowSystem: HTTP handshake server disabled.\n"
25-
]
26-
},
27-
{
28-
"name": "stderr",
29-
"output_type": "stream",
30-
"text": [
31-
"C:\\Users\\kperry\\.conda\\envs\\deep-learning\\Lib\\site-packages\\geopandas\\_compat.py:7: DeprecationWarning: The 'shapely.geos' module is deprecated, and will be removed in a future version. All attributes of 'shapely.geos' are available directly from the top-level 'shapely' namespace (since shapely 2.0.0).\n",
32-
" import shapely.geos\n",
33-
"C:\\Users\\kperry\\.conda\\envs\\deep-learning\\Lib\\site-packages\\mmengine\\optim\\optimizer\\zero_optimizer.py:11: DeprecationWarning: `TorchScript` support for functional optimizers is deprecated and will be removed in a future PyTorch release. Consider using the `torch.compile` optimizer instead.\n",
34-
" from torch.distributed.optim import \\\n"
35-
]
36-
}
37-
],
9+
"outputs": [],
3810
"source": [
3911
"import warnings\n",
4012
"warnings.filterwarnings(action='once')\n",
@@ -59,7 +31,7 @@
5931
},
6032
{
6133
"cell_type": "code",
62-
"execution_count": 2,
34+
"execution_count": 8,
6335
"metadata": {},
6436
"outputs": [],
6537
"source": [
@@ -92,7 +64,7 @@
9264
},
9365
{
9466
"cell_type": "code",
95-
"execution_count": 3,
67+
"execution_count": 9,
9668
"metadata": {},
9769
"outputs": [
9870
{
@@ -109,7 +81,7 @@
10981
"'C:\\\\Users\\\\kperry\\\\OneDrive - NLR\\\\Documents\\\\source\\\\repos\\\\Panel-Segmentation\\\\panel_segmentation\\\\models\\\\post_hurricane_model.pth'"
11082
]
11183
},
112-
"execution_count": 3,
84+
"execution_count": 9,
11385
"metadata": {},
11486
"output_type": "execute_result"
11587
}
@@ -135,7 +107,7 @@
135107
},
136108
{
137109
"cell_type": "code",
138-
"execution_count": 4,
110+
"execution_count": 10,
139111
"metadata": {},
140112
"outputs": [],
141113
"source": [
@@ -152,19 +124,19 @@
152124
},
153125
{
154126
"cell_type": "code",
155-
"execution_count": 5,
127+
"execution_count": 11,
156128
"metadata": {},
157129
"outputs": [
158130
{
159131
"name": "stderr",
160132
"output_type": "stream",
161133
"text": [
162-
"C:\\Users\\kperry\\.conda\\envs\\deep-learning\\Lib\\site-packages\\mmcv\\cnn\\bricks\\transformer.py:24: ImportWarning: ``MultiScaleDeformableAttention`` has been moved to ``mmcv.ops.multi_scale_deform_attn``, please change original path ``from mmcv.cnn.bricks.transformer import MultiScaleDeformableAttention`` to ``from mmcv.ops.multi_scale_deform_attn import MultiScaleDeformableAttention`` \n",
163-
" warnings.warn(\n",
164134
"C:\\Users\\kperry\\.conda\\envs\\deep-learning\\Lib\\site-packages\\mmdet\\apis\\inference.py:70: UserWarning: checkpoint is None, use COCO classes by default.\n",
165135
" warnings.warn('checkpoint is None, use COCO classes by default.')\n",
166136
"C:\\Users\\kperry\\.conda\\envs\\deep-learning\\Lib\\site-packages\\mmdet\\apis\\inference.py:70: UserWarning: checkpoint is None, use COCO classes by default.\n",
167-
" warnings.warn('checkpoint is None, use COCO classes by default.')\n"
137+
" warnings.warn('checkpoint is None, use COCO classes by default.')\n",
138+
"C:\\Users\\kperry\\.conda\\envs\\deep-learning\\Lib\\site-packages\\mmengine\\utils\\manager.py:113: UserWarning: <class 'mmdet.visualization.local_visualizer.DetLocalVisualizer'> instance named of visualizer has been created, the method `get_instance` should not accept any other arguments\n",
139+
" warnings.warn(\n"
168140
]
169141
}
170142
],
@@ -195,7 +167,7 @@
195167
},
196168
{
197169
"cell_type": "code",
198-
"execution_count": 6,
170+
"execution_count": 12,
199171
"metadata": {},
200172
"outputs": [
201173
{
@@ -206,8 +178,6 @@
206178
" with torch.cuda.amp.autocast(enabled=False):\n",
207179
"C:\\Users\\kperry\\.conda\\envs\\deep-learning\\Lib\\site-packages\\mmdet\\models\\backbones\\csp_darknet.py:118: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
208180
" with torch.cuda.amp.autocast(enabled=False):\n",
209-
"C:\\Users\\kperry\\.conda\\envs\\deep-learning\\Lib\\site-packages\\torch\\functional.py:534: UserWarning: torch.meshgrid: in an upcoming release, it will be required to pass the indexing argument. (Triggered internally at C:\\cb\\pytorch_1000000000000\\work\\aten\\src\\ATen\\native\\TensorShape.cpp:3596.)\n",
210-
" return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]\n",
211181
"C:\\Users\\kperry\\.conda\\envs\\deep-learning\\Lib\\site-packages\\numpy\\_core\\fromnumeric.py:45: DeprecationWarning: __array_wrap__ must accept context and return_scalar arguments (positionally) in the future. (Deprecated NumPy 2.0)\n",
212182
" return conv.wrap(result, to_scalar=False)\n"
213183
]

docs/examples/panel_detection/Panel_Detection_example.ipynb

Lines changed: 12 additions & 12 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)