Search icon CANCEL
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Artificial Intelligence for IoT Cookbook

You're reading from  Artificial Intelligence for IoT Cookbook

Product type Book
Published in Mar 2021
Publisher Packt
ISBN-13 9781838981983
Pages 260 pages
Edition 1st Edition
Languages
Author (1):
Michael Roshak Michael Roshak
Profile icon Michael Roshak

Table of Contents (11) Chapters

Preface 1. Setting Up the IoT and AI Environment 2. Handling Data 3. Machine Learning for IoT 4. Deep Learning for Predictive Maintenance 5. Anomaly Detection 6. Computer Vision 7. NLP and Bots for Self-Ordering Kiosks 8. Optimizing with Microcontrollers and Pipelines 9. Deploying to the Edge 10. About Packt

Configuring an IoT Edge device (device side)

The first thing to do is to install Moby. Moby is a scaled-down version of Docker. Docker allows you to push Edge modules down to the device. These models can be data-collected modules from sensors and they can also be ML modules. The steps are as follows:

  1. Download and install the Moby engine on the device:
curl -L https://aka.ms/moby-engine-armhf-latest -o moby_engine.deb && sudo dpkg -i ./moby_engine.deb
  1. Download and install the Moby CLI:
curl -L https://aka.ms/moby-cli-armhf-latest -o moby_cli.deb && sudo dpkg -i ./moby_cli.deb
  1. Fix the installation:
sudo apt-get install -f
  1.  Install the IoT Edge security manager:
curl -L https://aka.ms/libiothsm-std-linux-armhf-latest -o libiothsm-std.deb && sudo dpkg -i ./libiothsm-std.deb
  1. Install the security daemon:
curl -L https://aka.ms/iotedged-linux-armhf-latest -o iotedge.deb && sudo dpkg -i ./iotedge.deb
  1. Fix the installation:
sudo apt-get install ...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}