Skip to content

Как использовать Google Colab

Alica032 edited this page Apr 4, 2018 · 5 revisions
  1. зайти на сайт https://colab.research.google.com/
  2. выбрать File->New Python notebook
  3. выбрать Runtime->Change runtime type->GPU
  4. открываете свой https://drive.google.com
  5. в строке на странице colab вставляете код и запускаете. Выполняете все инструкции, которые будут прописаны.
    !apt-get install -y -qq software-properties-common python-software-properties module-init-tools

!add-apt-repository -y ppa:alessandro-strada/ppa 2>&1 > /devnull
!apt-get update -qq 2>&1 > /dev/null
!apt-get -y install -qq google-drive-ocamlfuse fuse
from google.colab import auth
auth.authenticate_user()
from oauth2client.client import GoogleCredentials
creds = GoogleCredentials.get_application_default()
import getpass

!google-drive-ocamlfuse -headless -id={creds.client_id} -secret={creds.client_secret} < /dev/null 2>&1 | grep URL

vcode = getpass.getpass()

!echo {vcode} | google-drive-ocamlfuse -headless -id={creds.client_id} -secret={creds.client_secret}

!mkdir -p My_Drive
!google-drive-ocamlfuse My_Drive
!ls My_Drive/
!echo "This newly created file will appear in your Drive file list." > My_Drive/created.txt

  1. готово
Clone this wiki locally