Apache MXNet | Installation

Slides:



Advertisements
Similar presentations
Cloud Computing Computer Science Innovations, LLC.
Advertisements

Amazon Web Services (aws) B. Ramamurthy. Introduction  Amazon.com, the online market place for goods, has leveraged the services that worked for their.
Lecture 12: Cloud Computing-C Amazon Web Service Tutorial.
USING PUTTY TO CONNECT TO AWS EC2 Anshuman Biswas.
Creating an AMI at Amazon’s EC2 Joe Steele
Creating a Biolinux AMI at Amazon’s EC2
Matt Bertrand Building GIS Apps in the Cloud. Infrastructure - Provides computer infrastructure, typically a platform virtualization environment, as a.
Chien-Chung Shen Google Compute Engine Chien-Chung Shen
Amazon EC2 Quick Start adapted from EC2_GetStarted.html.
Raspberry Pi Training Truman College Goals of our Training Today Unbox and boot up the Raspberry Pi (RPi) Learn how to access the desktop graphical.
CONFIGURING WINDOWS SERVER MIS 424 Professor Sandvig.
Eucalyptus Virtual Machines Running Maven, Tomcat, and Mysql.
MCDevOps Infrastructure In One Hour. Sponsors Improving Enterprises Software Development.
Client Installation StratusLab Tutorial (Orsay, France) 28 November 2012.
® Microsoft Office 2010 Appendix A: Introduction to SkyDrive and Office Web Apps.
Installation of IPT2 Chien-Wen CHEN Taiwan Forestry Research Institute 2012,Jun,26.
Secure Shell for Computer Science Nick Czebiniak Sung-Ho Maeung.
K. Liu, Q. Huang, J. Xia, Z. Li, P. Lostritto, Chapter 4 How to use cloud computing?, In Spatial Cloud Computing: a practical approach, edited by.
| nectar.org.au NECTAR TRAINING Module 10 Beyond the Dashboard.
Logging into the linux machines This series of view charts show how to log into the linux machines from the Windows environment. Machine name IP address.
Version Control. How do you share code? Discussion.
Windows PostgreSQL installation. Pre-requisites Define a local non-administrative Windows account (eg. postgres) Must install on Console, not through.
Linux Exercise. Download and Install the latest CentOS version and latest Ubuntu/Fedora OS. Configure a unique Host Name and a permanent IP Address for.
Logging into the linux machines This series of view charts show how to log into the linux machines from the Windows environment. Machine name IP address.
| nectar.org.au NECTAR TRAINING Module 10 Beyond the Dashboard.
Practical Kinetics Exercise 0: Getting Started Objectives: 1.Install Python and IPython Notebook 2.print “Hello World!”
Launch Amazon Instance. Amazon EC2 Amazon Elastic Compute Cloud (Amazon EC2) provides resizable computing capacity in the Amazon Web Services (AWS) cloud.
© 2015 MetricStream, Inc. All Rights Reserved. AWS server provisioning © 2015 MetricStream, Inc. All Rights Reserved. By, Srikanth K & Rohit.
Installing git In Linux: sudo apt-get install git In Windows: download it from run the setuphttp://git-scm.com/download/win.
INTRODUCTION TO AMAZON WEB SERVICES (EC2). AMAZON WEB SERVICES  Services  Storage (Glacier, S3)  Compute (Elastic Compute Cloud, EC2)  Databases (Redshift,
AMAZON SIMPLE CLOUD DEPLOYMENT Matt Quill Charlie Cano.
SEMINAR ON.  OVERVIEW -  What is Cloud Computing???  Amazon Elastic Cloud Computing (Amazon EC2)  Amazon EC2 Core Concept  How to use Amazon EC2.
APACHE INSTALL AWS Linux (Amazon Web Services EC2)
Canadian Bioinformatics Workshops
Introduction and Getting Started guide Alex Zlotnik Technion
Cloud Computing for Science
THE BATTLE OF CLOUDS Openstack vs. Amazon
Efficient development and deployment of Hydra projects using Vagrant
Version Control.
IST256 : Applications Programming for Information Systems
AWS Tutorials i2c Lab.
StratusLab Tutorial (Bordeaux, France)
IST256 Python Install Fest!!!!
DATA MINING Python.
Logging into the linux machines
Storing, Sending, and Tracking Files Recitation 2
Lab 1 introduction, debrief
Module 3 Building a web app.
Cloud Computing ISY143.
INSTALLING AND SETTING UP APACHE2 IN A LINUX ENVIRONMENT
Step by step guide on IoT data synchronization using MQTT
SimpleITK Setup and Schedule
SimpleITK Setup and Schedule
Webinar # April 2017 Isolates in the Cloud
IOTA HOW TO START BUILDING.
Getting Started: Amazon AWS Account Creation
EMSE 6574 – Programming for Analytics: Python 101 – Python Enviornments Joel Klein.
Lecture 16B: Instructions on how to use Hadoop on Amazon Web Services
Different types of Linux installation
Introduction to Git and GitHub
Deploying Your First Full Stack Application to the Cloud
Tutorial 1: Python, Numpy, and AWS Tutorial
Logging into the linux machines
Windows Installation Tutorial
SimpleITK Setup and Schedule
Installations for Course
Installations for Course
DIBBs Brown Dog Tutorial Setup
XAMPP.
Getting Started: Accessing Our Amazon AWS Server
Presentation transcript:

Apache MXNet | Installation

Prerequisites Pip installation (OSX or Linux) | Python, OpenCV, OpenBlas AWS Cloud using AMIs| AWS Account

Simple 1-line install: Pip install mxnet Pip Installation Simple 1-line install: Pip install mxnet

Git Clone https://github.com/dmlc/mxnet-notebooks/ Pip Installation Git Clone https://github.com/dmlc/mxnet-notebooks/

Browser window now open with your directory of notebooks Pip Installation Browser window now open with your directory of notebooks

Navigate to the AWS Management Console Using the AWS Cloud Navigate to the AWS Management Console

Using the AWS Cloud Choose EC2

Search Deep Learning AMI, and choose the OS version: Using the AWS Cloud Search Deep Learning AMI, and choose the OS version:

Select the instance type to launch Using the AWS Cloud Select the instance type to launch

Edit your security group to allow access using only your IP address Using the AWS Cloud Edit your security group to allow access using only your IP address

Review your instance, and choose Launch Using the AWS Cloud Review your instance, and choose Launch

For secure access, select or create a new private key file Using the AWS Cloud For secure access, select or create a new private key file

To find your instance DNS, navigate to the instance Using the AWS Cloud  To find your instance DNS, navigate to the instance

Using the AWS Cloud Connect to your instance by using SSH, and set up an SSH tunnel: Format: SSH -f -N –L localhost:8888:localhost:8888 –i <your .pem file name> ubuntu@<Your instance DNS>

Open Jupyter using the command: jupyter notebook Using the AWS Cloud Open Jupyter using the command: jupyter notebook

Open a browser window and navigate to localhost:port Using the AWS Cloud Open a browser window and navigate to localhost:port

Using the AWS Cloud Open a new notebook, import MXNet, and start coding or try out a tutorial

Thank You!