Hello everyone.. (This is the entire process. I will edit this post with images and format it properly later.) Today I'm gonna show you how to setup a Google Cloud Platform (GCP) GPU instance and install Tensorflow-GPU with CUDA 8.0 and CuDNN 6. (I'm not showing you how to register for GCP and get a Quota increase for having a GPU in a zone .. If you want me to show how that is done, comment below.) Let's begin... 1) Open cloud.google.com and login to get to your console. 2) Navigate to Compute Engine -> VM Instances which appears by clicking on the Hamburger icon ( three horizontal bars ) 3) Click Create 4) Choose all your requirements. I need 4 vCPUs and 15GB memory and a K80 GPU with 50GB storage having Ubuntu 16.04 Image. I will allow traffic from both HTTP and HTTPS. Observe carefully what I'm doing.. 6) The instance is being created. Meanwhile let's get links to download CUDA 8.0 and CuDNN 6. You need to have an account at NVIDIA's d...
Downloading and Installing Java S tep 1 : Download the Java jdk(Java Development Kit) and jre(Java Runtime Environment) from the following links. Choose the appropriate version for your OS. Java Jdk Java Jre Step 2: Install both of them in your default installation drive. After completing the installation proceed to setting the path variables. Setting up path variables.(Windows) Step 1: Open the properties of "your computer". Click on Advanced system settings. Select Environment Variables. (or) Type "environment variables" in windows search (start button). Step 2: Make a new system variable with name "JAVA_HOME" and the variable value as "the installation path" as shown in the picture. Step 3: Edit the system variable named "Path" and add an entry with the path of your jre bin as shown in picture. Step 4: You are don...
Hi guys . . . This is a short tutorial about setting automatic Shutdown without the need for any third party software/tool. Let's get into it. It can be done in two ways . . . Method 1 Using CMD Open CMD and type the following code into it shutdown -s -t 1000 (The number 1000 is 1000 milliseconds. Change it depending on the amount of time you want the system to be on.) If you want to abort this automatic shutdown then type the following code into the prompt shutdown -a (This aborts the automatic shutdown which has been initiated from the previous command.) Method 2 Using a batch file Batch files are generally used to execute a set of commands on launching them. In order to create a batch file for automatic shutdown, open Notepad. Type the following code into it. shutdown -s -t 1000 (The number 1000 is 1000 seconds. Change it depending on the amount of time you want the system to be on.) If you want to abort...
Comments
Post a Comment