Tutorial 90 - Setting up your free Google Colab account for deep learning

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 มี.ค. 2021
  • Colab is a free Jupyter notebook environment that runs entirely in the cloud.
    Out of the box, Colab supports many machine learning libraries without the need to install.
    The primary reason for you to use Colab is: Free Cloud service with free GPU.
    Colab uses Google Drive for storing your notebooks
    Make sure you have a Google account
    Make sure you log on to your Google Drive account at least once.
    Access Colab at: colab.research.google.com/
    You need to select GPU as part of your runtime if you’d like to use it for machine learning.
    To verify the hardware specifications of your virtual machine, here are a few commands you can type in your Colab Notebook.
    from psutil import *
    #Number of CPUs
    cpu_count()
    #CPU model and speed
    !lscpu |grep 'Model name'
    #Available Hard disk space
    !df -h / | awk '{print $4}'
    #Usable memory
    !free -h --si | awk '/Mem:/{print $2}'
    #GPU type (make sure you select GPU in the runtime)
    !nvidia-smi -L
    #Full GPU specifications
    !nvidia-smi
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 11

  • @tilkesh
    @tilkesh 2 ปีที่แล้ว +1

    Thank you very much.

  • @surflaweb
    @surflaweb 3 ปีที่แล้ว

    I didn't know those comands. Thanks man.

  • @shokenlee7315
    @shokenlee7315 2 ปีที่แล้ว

    Excellent videos

  • @user-nv2xy8dx5b
    @user-nv2xy8dx5b ปีที่แล้ว

    thank you very much

  • @anganamondal3646
    @anganamondal3646 2 ปีที่แล้ว +1

    Quite helpful

  • @yahaisha
    @yahaisha 2 ปีที่แล้ว +1

    good..tq

  • @annicetrazafindratovolahy1512
    @annicetrazafindratovolahy1512 2 ปีที่แล้ว

    Can we use our local driver when training model in colab? I mean, if my dataset is located in my local driver and its size is 100GB, how do I use this dataset located in my computer using colab GPU?

    • @ZEISS_arivis
      @ZEISS_arivis  ปีที่แล้ว

      You cannot use cloud Colab resources while pointing to your local drive. You can either upload your data to Google Drive or run a local Colab instance that uses your local resources and can access local files. But this means you will not have GPU access if your local system does not have one.