Giter Site home page Giter Site logo

microsoft / mlontheedgecodeproject Goto Github PK

View Code? Open in Web Editor NEW
6.0 6.0 10.0 39 KB

The overall purpose of this document is to showcase an example of Azure Machine Learning on IoT Edge Devices using Microsoft Embedded Learning Library (ELL)

License: MIT License

Dockerfile 6.41% Python 93.36% Shell 0.24%

mlontheedgecodeproject's Introduction

MLontheEdge

The overall purpose of this document is to showcase an example of Azure Machine Learning on IoT Edge Devices using Microsoft Embedded Learning Library (ELL)

Table of Contents

  1. Acquiring Equipments
  2. Windows Device Set Up
  1. Set Up for Raspberry Pi Devices
  2. Azure Storage
  3. Download PreTrained Model
  4. Host Device to Raspberry Pi
  5. MLonEdge with Docker
  6. MlonEdge by Hand
  7. Running Application
  8. Contribution

Acquiring Equipments

Item Description Est. Cost (USD) Example Products
Raspberry Pi 3 Main device for running software $37.00 PiDevice
Sandisk Ultra 32GB Micro SDHC Will store the Raspbian Operating System image and software for the Raspberry Pi 3 $12.00 MicroSD
Raspberry Pi Camera Used to capture images and video on the Pi $6.00 PiCamera
USB Keyboard WIRED CONNECTION: Keyboard control for the Pi $15.00 Keyboard
USB Mouse WIRED CONNECTION: Mouse control for the Pi $6.00 Mouse
Ethernet Cable WIRED CONNECTION: Network connection for the Pi $4.00 Ethernet

Window Device Set Up

The first step is to install Microsoft ELL on your host device. In order to do so, simply follow the directions in the link provided: Microsoft ELL

Set Up for Raspberry Pi Devices

  1. Python 3.5.3: These steps assume you are starting from an existing Raspbian install with Python 3.5.3 on it based on the Raspbian Stretch image - 2018-04-18 image

  2. Change Hostname: It is important that your host name is changes as we will attempt to connect to it remotely. The steps on how to achieve just that is best described here: Hostname Directions

  3. Camera Set Up: Begin by typing:

sudo raspi-config
  1. Select 5 Interfacing Options and press Enter.
  2. Select P1 Camera and press Enter.
  3. Select Yes to enable the camera interface.
  4. Load the camera module:
sudo modprobe bcm2835-v4l2

Once the picamera is plugged in, a simple test to see if you picamera is working correctly is the command raspistill:

raspistill -o image.jpg

If a preview window is opened and a new file image.jpg is saved, then the picamera is successfully installed.

  1. Enable SSH: Begin by typing:
sudo raspi-config
  1. Select 5 Interfacing Options and press Enter.

  2. Select P2 SSH and press Enter

  3. Select Yes to enable the SSH Server.

  4. Note: : Once SSH has been enabled, be sure to change the password associated with your Raspberry Pi, if you have not done so already.

  5. Network Connection: For this project, the majority of the network connectivity came through the attachment of an ethernet cable. However, attached are steps to connecting the Raspberry Pi to a wireless connection. Wifi Connections

Azure Storage

Azure Blob Storage:

The Raspberry Pi has a small storage capability. Therefore, it is important to save picture, videos, models, and project description on the Cloud. For this project, Azure Storage is being used. Steps on how to set up Azure Storage is linked here. Azure Storage

Note: Be sure to save and make note of your STORAGE ACCOUNT NAME and STORAGE ACCOUNT KEYS They will be needed in the Edge.py and pisetup.py script later on your Raspberry Pi as well as on the Host.py script for your Host Device. azureblobs

Pi3 Folder:

  1. The utilization of Azure Storage is required for this application. Azure allows for automatic uploads and downloads of content file. As well, it is essential for persitant updates to the current pi3 folder.
  2. The first time the application is ran with a correct Azure Credentials, blob containers are created for use with that given account. In addition, the current version of the pi3 folder located on the Raspberry Pi is uploaded to its respective blob container.
  3. Constant checks are being made for changes and updates that occur every 3 hours.

Important Note on the Pi3 Folder on Azure:

After the project has been ran once and the given storage containers have been made, the user can now make changes to the given model and the pi3 folder.

  1. Using the Azure Portal or Microsoft Azure Storage Explorer, locate the edgemodels blob container.
  2. This is where the compiled "pi3 folder" with its given model is stored. It is important that the pi3 folder is zipped before being ready to be uploaded to the given blob container.
  3. There can only be one item in this blob container and it most be titled zippedpi3 for use on the Raspberry Pi. edgmodels

Download Models

As of right now, the Microsoft ELL supports Neural Network Models that were trained with Microsoft Cognitive Toolkit(CNTK) or with Darknet. Follow the given tutorial for insights in how to download model with the ELL Library. Importing Models.

From Host Device ELL to Raspberry Pi

The next step is to now get a compressed model from the ELL Library from your laptop to your Raspberry Pi to be utilized. The directions below are modified based on a tutorial sample from the site Microsft-Ell-Image-Classification.

  1. Activate your Python enviroment on your host device
[Linux/macOS] source activate py36
[Windows] activate py36
  1. Create a new directory to be copied over to the Rasberry Pi. The directory should contain should compressed CTNK or Darknets model in model.ell form. It should also contain the text file for the model classification
  2. As before, run the wrap tool on your laptop or desktop computer, but this time specify the target platform as pi3. This tells the ELL compiler to generate machine code for the Raspberry Pi’s ARM Cortex A53 processor. This step needs to be performed in the directory to be copied to the Raspberry Pi.
python <ELL-root>/tools/wrap/wrap.py model.ell --language python --target pi3
  1. To speed up the transfer of files to the Raspberry Pi, delete the model.ell file first before copying the folder. Now, there’s a pi3 directory that contains a CMake project that builds the Python wrapper and some helpful Python utilities. This directory should be inside a directory that also contains the model classification text.

Build Python Module:

The final step in the process is getting the pi3 folder transfered to Azure Blob Storage and the Raspberry Pi

  1. A helper script for tranfering to Azure Blob Storage has been created; Host.py. Simply change the Azure Account Storage Name and Key in the Host.py script and run it in the same directory as the pi3 folder. This will compress the necessary folder and make it available to be used by the Raspberry Pi.
python Host.py
  1. Log in to your Raspberry Pi, find the directory you just copied from your computer, and build the python module that wraps the ELL model.
cd pi3
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
make
cd ../..
  1. You just created a Python module named model, which includes functions that report the model’s input and output dimensions and makes it possible to pass images to the model for classification.

Quick Project Run with Docker

Setting Up Docker on Raspberry Pi

  1. Begin by updating the Raspberry Pi packages with the folloing command
sudo apt-get update && sudo apt-get upgrade
  1. Proceed to installing Docker for the Raspberry Pi
curl -sSL https://get.docker.com | sh
  1. Add 'Pi' user to the Docker group
sudo usermod -aG docker pi

Note: Until a Raspberry Pi reboot, the sudo prefix will be required before running any Docker commands

  1. Verify that the Docker download was succesful in two ways
docker --version
sudo docker run armhf/hello-world

MLontheEdge for Docker A prebuilt docker image of this entire project has been made available on DockerHub. Step on how to download and run succesfully are listed below.

  1. In the terminal, run the following docker command to pull the MLonthe Edge Docker Image
docker pull amlonedge\dockonedge:latest

Note: This is a very large image and will take approximately 15 minutes to be completely ready for use.

  1. Once this is done, in your preferred working directory, create a env.list file. A copy of what is required is available on this repository.
  2. The downloaded docker images requires a user Azure Blob Storage Name and Key to be entired as enviromental variables in order to run. This should be the Azure Storage accounnt where your zippedpi3 folder is located and where you would like project images and video saved too.
vim env.list

AZURE_CONTAINER_NAME=yourblobstorageaccountname
AZURE_CONTAINER_KEY=yourblobstorageaccesskey
  1. After saving the env.list file, the final step is to actually run the entire project. Run the project with the following exact command:
docker run --device=/dev/vcsm --device=/dev/vchiq --env-file env.list amlonedge/dockeronedge:latest 
  1. Once this command is ran, the project must check and update various files as neccesary. After about 30 seconds of setting up, the project is run continuously. Afterwards, predictions, images and video are set to the given Azure Blob Storage Account.

Do It Yourself

Necessary Python Packages

CMake: CMake will be used on the Raspberry Pi to create python modules that can be called from given code. In order to install CMake on your Raspberry Pi, you must first be connected to the network, then open a terminal window and type:

sudo apt-get update
sudo apt-get install -y cmake

OpenBLAS: This is for fast linear algebra operations. This is highly recommended because it can significantly increase the speed of the models. Type:

sudo apt-get install -y libopenblas-dev

Curl: Curl is a command line tool used to transfer Data via URL. To install curl, type:

sudo apt-get install -y curl

OpenCV: As of this time, you will need to Build Open CV 3.3.0 on Raspbian Stretch with Python 3.5.3

  1. It is crucial that this is done on Raspbian Stretch with Python 3.5.3. A link to download and format for Raspbian Stretch is provided here. Strech Image
  2. Make sure that the Raspbian Stretch OS is up to date:
sudo apt-get update
sudo apt-get upgrade -y
  1. Ensure that after the update, Python 3 is running Python 3.5.3:
python3 --version
  1. Install some pre-requisites for the OpenCV Download:
sudo apt-get install -y build-essential cmake pkg-config
sudo apt-get install -y libjpeg-dev libtiff5-dev libjasper-dev libpng12-dev libdc1394-22-dev
sudo apt-get install -y libavcodec-dev libavformat-dev libswscale-dev libv4l-dev
sudo apt-get install -y libxvidcore-dev libx264-dev
sudo apt-get install -y libgtk2.0-dev libgtk-3-dev
sudo apt-get install -y libatlas-base-dev gfortran
sudo apt-get install -y python3-dev
  1. Ensure that after the install, we running the correct pip module version:
python3 -m pip --version

Verify that the result of that command is a pip version 9.0.1 or greater

pip 9.0.1 from /usr/lib/python3/dist-packages (python 3.5)
  1. Install Jinja2:
python3 -m install jinja2
  1. Install Numpy:
python3 -m pip install numpy
  1. Download and Unzip the OpenCV Source:
cd ~
wget -O opencv.zip 'https://github.com/Itseez/opencv/archive/3.3.0.zip'
unzip opencv.zip

Switch into folder and download the Opencv_contrib repo:

cd opencv-3.3.0
wget -O opencv_contrib.zip 'https://github.com/Itseez/opencv_contrib/archive/3.3.0.zip'
unzip opencv_contrib.zip
  1. Create and go into the following build directory
cd ~/opencv-3.3.0
mkdir build
cd build
  1. Run cmake with the following commands and DON'T FORGET THE '..' AT THE END :
cmake -D CMAKE_BUILD_TYPE=RELEASE \
  -D CMAKE_INSTALL_PREFIX=/usr/local \
  -D OPENCV_EXTRA_MODULES_PATH=../opencv_contrib-3.3.0/modules \
  -D BUILD_EXAMPLES=OFF \
  -D BUILD_TESTS=OFF \
  -D BUILD_PERF_TESTS=OFF \
  -D BUILD_opencv_python2=0 \
  -D PYTHON2_EXECUTABLE= \
  -D PYTHON2_INCLUDE_DIR= \
  -D PYTHON2_LIBRARY= \
  -D PYTHON2_NUMPY_INCLUDE_DIRS= \
  -D PYTHON2_PACKAGES_PATH= \
  -D BUILD_opencv_python3=1 \
  -D PYTHON3_EXECUTABLE=/usr/bin/python3 \
  -D PYTHON3_INCLUDE_DIR=/usr/include/python3.5 \
  -D PYTHON3_LIBRARY=/usr/lib/arm-linux-gnueabihf/libpython3.5m.so \
  -D PYTHON3_NUMPY_INCLUDE_DIRS=/home/pi/.local/lib/python3.5/site-packages/numpy/core/include \
  -D PYTHON3_PACKAGES_PATH=/home/pi/.local/lib/python3.5/site-packages \
  ..
  1. Once that is complete, Run make:

Note: make will take approximately 2 hours to complete.

make
  1. Run make install:
sudo make install
  1. Test that OpenCV was installed correctly:
python3 -c "import cv2; print(cv2.__version__)"
  1. Remove the unneccesay zip file and directory
rm ~/opencv.zip
rm -rf ~/opencv-3.3.0

Running Applications

The steps below show how the given Azure ML on Edge Project is deployed

  1. Clone or Download the given repository:
git clone https://github.com/CatalystCode/MLontheEdge.git
  1. Switch in the MLontheEdge and Raspi Folders
cd MLontheEdge/Raspi/
  1. Export the Azure Blob Storage Name and Storage Key as enviromental Variable
$EDITOR ~/.profile
#ADD the following line to the bottom of the file:
export AZURE_CONTAINER_NAME=yourblobstoragename
export AZURE_CONTAINER_KEY=yourblobstoragekey
  1. Run pisetup.py in order to set up the entire project. This script checks for the model version as well as make it ready for use.
python3 pisetup.py
  1. Run the Edge.py script adapted specially for the Raspberry Pi
python3 Edge.py
  1. While the script is running, a camera preview window will be opened allow you to see what the picamera sees. The scripts takes a picture every 5 seconds and returns what the model thinks it sees in that picture.
  2. If the model and python script recognize an object, a video is captured of the 10 seconds before that moment and 15 seconds after the given moment and then saved it to an Azure Blob Storage account.

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.

mlontheedgecodeproject's People

Contributors

arijitad avatar davidodun avatar microsoft-github-policy-service[bot] avatar microsoftopensource avatar msftgits avatar singingdata avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

mlontheedgecodeproject's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.