Skip to content

Commit 938a839

Browse files
committed
3DCNN update
1 parent 9d9119c commit 938a839

21 files changed

+608
-252
lines changed

.ipynb_checkpoints/Performance_test-checkpoint.ipynb

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

Donkeycar_3DCNN.ipynb

Lines changed: 29 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"cells": [
33
{
44
"cell_type": "code",
5-
"execution_count": 12,
5+
"execution_count": 1,
66
"metadata": {},
77
"outputs": [],
88
"source": [
@@ -23,9 +23,17 @@
2323
},
2424
{
2525
"cell_type": "code",
26-
"execution_count": 13,
26+
"execution_count": 2,
2727
"metadata": {},
2828
"outputs": [
29+
{
30+
"name": "stderr",
31+
"output_type": "stream",
32+
"text": [
33+
"C:\\Users\\allace\\Anaconda3\\lib\\site-packages\\h5py\\__init__.py:36: FutureWarning: Conversion of the second argument of issubdtype from `float` to `np.floating` is deprecated. In future, it will be treated as `np.float64 == np.dtype(float).type`.\n",
34+
" from ._conv import register_converters as _register_converters\n"
35+
]
36+
},
2937
{
3038
"name": "stdout",
3139
"output_type": "stream",
@@ -42,16 +50,16 @@
4250
},
4351
{
4452
"cell_type": "code",
45-
"execution_count": 14,
53+
"execution_count": 3,
4654
"metadata": {},
4755
"outputs": [
4856
{
4957
"data": {
5058
"text/plain": [
51-
"['/device:GPU:0']"
59+
"[]"
5260
]
5361
},
54-
"execution_count": 14,
62+
"execution_count": 3,
5563
"metadata": {},
5664
"output_type": "execute_result"
5765
}
@@ -68,7 +76,7 @@
6876
},
6977
{
7078
"cell_type": "code",
71-
"execution_count": 15,
79+
"execution_count": 4,
7280
"metadata": {},
7381
"outputs": [],
7482
"source": [
@@ -91,7 +99,7 @@
9199
},
92100
{
93101
"cell_type": "code",
94-
"execution_count": 16,
102+
"execution_count": 5,
95103
"metadata": {},
96104
"outputs": [],
97105
"source": [
@@ -100,7 +108,7 @@
100108
},
101109
{
102110
"cell_type": "code",
103-
"execution_count": 17,
111+
"execution_count": 6,
104112
"metadata": {},
105113
"outputs": [],
106114
"source": [
@@ -109,14 +117,14 @@
109117
},
110118
{
111119
"cell_type": "code",
112-
"execution_count": 18,
120+
"execution_count": 7,
113121
"metadata": {},
114122
"outputs": [
115123
{
116124
"name": "stderr",
117125
"output_type": "stream",
118126
"text": [
119-
"C:\\Users\\Jason\\Anaconda3\\envs\\tf-gpu\\lib\\site-packages\\pandas\\io\\feather_format.py:112: FutureWarning: `nthreads` argument is deprecated, pass `use_threads` instead\n",
127+
"C:\\Users\\allace\\Anaconda3\\lib\\site-packages\\pandas\\io\\feather_format.py:112: FutureWarning: `nthreads` argument is deprecated, pass `use_threads` instead\n",
120128
" return feather.read_dataframe(path, nthreads=nthreads)\n"
121129
]
122130
}
@@ -127,7 +135,7 @@
127135
},
128136
{
129137
"cell_type": "code",
130-
"execution_count": 19,
138+
"execution_count": 8,
131139
"metadata": {},
132140
"outputs": [
133141
{
@@ -136,7 +144,7 @@
136144
"(38574, 3)"
137145
]
138146
},
139-
"execution_count": 19,
147+
"execution_count": 8,
140148
"metadata": {},
141149
"output_type": "execute_result"
142150
}
@@ -147,7 +155,7 @@
147155
},
148156
{
149157
"cell_type": "code",
150-
"execution_count": 20,
158+
"execution_count": 9,
151159
"metadata": {},
152160
"outputs": [
153161
{
@@ -220,7 +228,7 @@
220228
"4 0.14 -0.06 ../tubs/tub5/4_cam-image_array_.jpg"
221229
]
222230
},
223-
"execution_count": 20,
231+
"execution_count": 9,
224232
"metadata": {},
225233
"output_type": "execute_result"
226234
}
@@ -231,7 +239,7 @@
231239
},
232240
{
233241
"cell_type": "code",
234-
"execution_count": 21,
242+
"execution_count": 10,
235243
"metadata": {},
236244
"outputs": [],
237245
"source": [
@@ -244,7 +252,7 @@
244252
},
245253
{
246254
"cell_type": "code",
247-
"execution_count": 22,
255+
"execution_count": 11,
248256
"metadata": {},
249257
"outputs": [],
250258
"source": [
@@ -268,7 +276,7 @@
268276
},
269277
{
270278
"cell_type": "code",
271-
"execution_count": 23,
279+
"execution_count": 12,
272280
"metadata": {},
273281
"outputs": [],
274282
"source": [
@@ -282,7 +290,7 @@
282290
},
283291
{
284292
"cell_type": "code",
285-
"execution_count": 24,
293+
"execution_count": 13,
286294
"metadata": {},
287295
"outputs": [],
288296
"source": [
@@ -893,9 +901,9 @@
893901
],
894902
"metadata": {
895903
"kernelspec": {
896-
"display_name": "Tensorflow-GPU",
904+
"display_name": "Python 3",
897905
"language": "python",
898-
"name": "tf-gpu"
906+
"name": "python3"
899907
},
900908
"language_info": {
901909
"codemirror_mode": {
@@ -907,7 +915,7 @@
907915
"name": "python",
908916
"nbconvert_exporter": "python",
909917
"pygments_lexer": "ipython3",
910-
"version": "3.6.6"
918+
"version": "3.6.5"
911919
}
912920
},
913921
"nbformat": 4,

Donkeycar_Keras-Speedup.ipynb

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -685,13 +685,7 @@
685685
"119/120 [============================>.] - ETA: 0s - loss: 1.2902 - angle_out_loss: 1.4300 - throttle_out_loss: 0.3196\n",
686686
"Epoch 00020: val_loss did not improve\n",
687687
"120/120 [==============================] - 85s 711ms/step - loss: 1.2908 - angle_out_loss: 1.4307 - throttle_out_loss: 0.3196 - val_loss: 1.2217 - val_angle_out_loss: 1.3539 - val_throttle_out_loss: 0.3182\n",
688-
"Epoch 21/100\n"
689-
]
690-
},
691-
{
692-
"name": "stdout",
693-
"output_type": "stream",
694-
"text": [
688+
"Epoch 21/100\n",
695689
"119/120 [============================>.] - ETA: 0s - loss: 1.2893 - angle_out_loss: 1.4291 - throttle_out_loss: 0.3181\n",
696690
"Epoch 00021: val_loss improved from 1.20129 to 1.18588, saving model to models/pilot_jn\n",
697691
"120/120 [==============================] - 84s 700ms/step - loss: 1.2893 - angle_out_loss: 1.4290 - throttle_out_loss: 0.3182 - val_loss: 1.1859 - val_angle_out_loss: 1.3141 - val_throttle_out_loss: 0.3188\n",
@@ -975,9 +969,9 @@
975969
],
976970
"metadata": {
977971
"kernelspec": {
978-
"display_name": "Tensorflow-GPU",
972+
"display_name": "Python 3",
979973
"language": "python",
980-
"name": "tf-gpu"
974+
"name": "python3"
981975
},
982976
"language_info": {
983977
"codemirror_mode": {
@@ -989,7 +983,7 @@
989983
"name": "python",
990984
"nbconvert_exporter": "python",
991985
"pygments_lexer": "ipython3",
992-
"version": "3.6.6"
986+
"version": "3.6.5"
993987
}
994988
},
995989
"nbformat": 4,

0 commit comments

Comments
 (0)