Download and install the tutorial ZIP file
Here, you are going to turn on your Raspberry Pi and test AlexNet with some images.
First, turn on your Raspberry Pi and navigating to the home directory of your Raspberry Pi or host machine.
Then, on your Raspberry Pi enter the following commands:
# Install unzip sudo apt-get install unzip # Download the zip file with the AlexNet model, input images and labels wget https://developer.arm.com//-/media/Arm%20Developer%20Community/Images/Tutorial%20Guide%20Diagrams%20and%20Screenshots/Machine%20Learning/Running%20AlexNet%20on%20Pi%20with%20Compute%20Library/compute_library_alexnet.zip?revision=c1a232fa-f328-451f-9bd6-250b83511e01 # Create a new folder mkdir assets_alexnet # Unzip unzip compute_library_alexnet.zip -d assets_alexnet
The contents of the ZIP file are now extracted into the assets_alexnet folder.