Skip to content

Commit 65d9eec

Browse files
authored
Merge pull request #176 from NVIDIA-AI-IOT/dev-sdcard
update to JetPack 4.3 - sdcard v0.4.0
2 parents c18fd9b + cc1112a commit 65d9eec

File tree

8 files changed

+103
-15
lines changed

8 files changed

+103
-15
lines changed

jetbot/ssd_tensorrt/FlattenConcat.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ using namespace nvinfer1;
2525
namespace
2626
{
2727
const char* FLATTENCONCAT_PLUGIN_VERSION{"1"};
28-
const char* FLATTENCONCAT_PLUGIN_NAME{"FlattenConcat_TRT"};
28+
const char* FLATTENCONCAT_PLUGIN_NAME{"FlattenConcat_TRT_jetbot"};
2929
}
3030

3131
// Flattens all input tensors and concats their flattened version together

jetbot/ssd_tensorrt/ssd_tensorrt.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
import ctypes
2-
import graphsurgeon as gs
32
import numpy as np
43
import os
54
import subprocess
65
import tensorrt as trt
7-
import uff
86

97
TRT_INPUT_NAME = 'input'
108
TRT_OUTPUT_NAME = 'nms'
@@ -86,9 +84,10 @@ def _load_config(config_path):
8684

8785
def ssd_pipeline_to_uff(checkpoint_path, config_path,
8886
tmp_dir='exported_model'):
89-
87+
import graphsurgeon as gs
9088
from object_detection import exporter
9189
import tensorflow as tf
90+
import uff
9291

9392
# TODO(@jwelsh): Implement by extending model builders with
9493
# TensorRT plugin stubs. Currently, this method uses pattern
@@ -177,13 +176,13 @@ def ssd_pipeline_to_uff(checkpoint_path, config_path,
177176

178177
boxloc_concat_plugin = gs.create_plugin_node(
179178
"boxloc_concat",
180-
op="FlattenConcat_TRT",
179+
op="FlattenConcat_TRT_jetbot",
181180
dtype=tf.float32,
182181
)
183182

184183
boxconf_concat_plugin = gs.create_plugin_node(
185184
"boxconf_concat",
186-
op="FlattenConcat_TRT",
185+
op="FlattenConcat_TRT_jetbot",
187186
dtype=tf.float32,
188187
)
189188

@@ -224,6 +223,7 @@ def ssd_uff_to_engine(uff_buffer,
224223
strict_type_constraints=False,
225224
log_level=trt.Logger.INFO):
226225

226+
import uff
227227
# create the tensorrt engine
228228
with trt.Logger(log_level) as logger, trt.Builder(logger) as builder, \
229229
builder.create_network() as network, trt.UffParser() as parser:

notebooks/collision_avoidance/live_demo.ipynb

+7-2
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,12 @@
237237
},
238238
"outputs": [],
239239
"source": [
240+
"import time\n",
241+
"\n",
240242
"camera.unobserve(update, names='value')\n",
243+
"\n",
244+
"time.sleep(0.1) # add a small sleep to make sure frames have finished processing\n",
245+
"\n",
241246
"robot.stop()"
242247
]
243248
},
@@ -302,9 +307,9 @@
302307
"name": "python",
303308
"nbconvert_exporter": "python",
304309
"pygments_lexer": "ipython3",
305-
"version": "3.6.7"
310+
"version": "3.6.9"
306311
}
307312
},
308313
"nbformat": 4,
309-
"nbformat_minor": 2
314+
"nbformat_minor": 4
310315
}

notebooks/road_following/live_demo.ipynb

+7-2
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,12 @@
317317
"metadata": {},
318318
"outputs": [],
319319
"source": [
320+
"import time\n",
321+
"\n",
320322
"camera.unobserve(execute, names='value')\n",
323+
"\n",
324+
"time.sleep(0.1) # add a small sleep to make sure frames have finished processing\n",
325+
"\n",
321326
"robot.stop()"
322327
]
323328
},
@@ -348,9 +353,9 @@
348353
"name": "python",
349354
"nbconvert_exporter": "python",
350355
"pygments_lexer": "ipython3",
351-
"version": "3.6.7"
356+
"version": "3.6.9"
352357
}
353358
},
354359
"nbformat": 4,
355-
"nbformat_minor": 2
360+
"nbformat_minor": 4
356361
}

notebooks/road_following/train_model.ipynb

+4-4
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@
246246
" optimizer.zero_grad()\n",
247247
" outputs = model(images)\n",
248248
" loss = F.mse_loss(outputs, labels)\n",
249-
" train_loss += loss\n",
249+
" train_loss += float(loss)\n",
250250
" loss.backward()\n",
251251
" optimizer.step()\n",
252252
" train_loss /= len(train_loader)\n",
@@ -258,7 +258,7 @@
258258
" labels = labels.to(device)\n",
259259
" outputs = model(images)\n",
260260
" loss = F.mse_loss(outputs, labels)\n",
261-
" test_loss += loss\n",
261+
" test_loss += float(loss)\n",
262262
" test_loss /= len(test_loader)\n",
263263
" \n",
264264
" print('%f, %f' % (train_loss, test_loss))\n",
@@ -293,9 +293,9 @@
293293
"name": "python",
294294
"nbconvert_exporter": "python",
295295
"pygments_lexer": "ipython3",
296-
"version": "3.6.7"
296+
"version": "3.6.9"
297297
}
298298
},
299299
"nbformat": 4,
300-
"nbformat_minor": 2
300+
"nbformat_minor": 4
301301
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
#!/bin/bash
2+
3+
password='jetbot'
4+
5+
# Keep updating the existing sudo time stamp
6+
sudo -v
7+
while true; do sudo -n true; sleep 120; kill -0 "$$" || exit; done 2>/dev/null &
8+
9+
# Enable i2c permissions
10+
sudo usermod -aG i2c $USER
11+
12+
# Install pip and some python dependencies
13+
sudo apt-get update
14+
sudo apt install -y python3-pip python3-pil
15+
sudo pip3 install --upgrade numpy
16+
17+
# Install the pre-built TensorFlow pip wheel
18+
sudo apt-get update
19+
sudo apt-get install -y libhdf5-serial-dev hdf5-tools libhdf5-dev zlib1g-dev zip libjpeg8-dev
20+
sudo apt-get install -y python3-pip
21+
sudo pip3 install -U pip
22+
sudo pip3 install -U numpy==1.16.1 future==0.17.1 mock==3.0.5 h5py==2.9.0 keras_preprocessing==1.0.5 keras_applications==1.0.6 enum34 futures testresources setuptools protobuf
23+
sudo pip3 install --pre --extra-index-url https://developer.download.nvidia.com/compute/redist/jp/v42 tensorflow-gpu==1.14.0+nv19.10
24+
25+
# Install the pre-built PyTorch pip wheel
26+
wget https://nvidia.box.com/shared/static/phqe92v26cbhqjohwtvxorrwnmrnfx1o.whl -O torch-1.3.0-cp36-cp36m-linux_aarch64.whl
27+
sudo pip3 install numpy torch-1.3.0-cp36-cp36m-linux_aarch64.whl
28+
29+
# Install torchvision package
30+
git clone https://github.com/pytorch/vision
31+
cd vision
32+
git checkout v0.4.0
33+
sudo python3 setup.py install
34+
35+
# Install traitlets (master, to support the unlink() method)
36+
sudo python3 -m pip install git+https://github.com/ipython/traitlets@master
37+
38+
# Install jupyter lab
39+
sudo apt install -y nodejs npm
40+
sudo pip3 install jupyter jupyterlab
41+
sudo jupyter labextension install @jupyter-widgets/jupyterlab-manager
42+
43+
jupyter lab --generate-config
44+
#jupyter notebook password
45+
python3 -c "from notebook.auth.security import set_password; set_password('$password', '$HOME/.jupyter/jupyter_notebook_config.json')"
46+
47+
# install jetbot python module
48+
cd
49+
sudo apt install -y python3-smbus
50+
cd ~/jetbot
51+
sudo apt-get install -y cmake
52+
sudo python3 setup.py install
53+
54+
# Install jetbot services
55+
cd jetbot/utils
56+
python3 create_stats_service.py
57+
sudo mv jetbot_stats.service /etc/systemd/system/jetbot_stats.service
58+
sudo systemctl enable jetbot_stats
59+
sudo systemctl start jetbot_stats
60+
python3 create_jupyter_service.py
61+
sudo mv jetbot_jupyter.service /etc/systemd/system/jetbot_jupyter.service
62+
sudo systemctl enable jetbot_jupyter
63+
sudo systemctl start jetbot_jupyter
64+
65+
# Make swapfile
66+
cd
67+
sudo fallocate -l 4G /var/swapfile
68+
sudo chmod 600 /var/swapfile
69+
sudo mkswap /var/swapfile
70+
sudo swapon /var/swapfile
71+
sudo bash -c 'echo "/var/swapfile swap swap defaults 0 0" >> /etc/fstab'
72+
73+
# Copy JetBot notebooks to home directory
74+
cp -r ~/jetbot/notebooks ~/Notebooks
75+

scripts/run-script-and-save-log.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
3+
./create-sdcard-image-from-scratch.sh 2>&1 | tee ~/jetbot-create-sdcard-image.log

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def build_libs():
1313

1414
setup(
1515
name='jetbot',
16-
version='0.3.0',
16+
version='0.4.0',
1717
description='An open-source robot based on NVIDIA Jetson Nano',
1818
packages=find_packages(),
1919
install_requires=[

0 commit comments

Comments
 (0)