autobotasia / autoface

Face Recognition Using
MIT License
0 stars 1 forks source link

Guide Insigntface and facenet #33

Open thaithien001 opened 4 years ago

thaithien001 commented 4 years ago

Connect Google Colab

  1. Link Colab via Google Drive !apt-get install -y -qq software-properties-common python-software-properties module-init-tools !add-apt-repository -y ppa:alessandro-strada/ppa 2>&1 > /dev/null !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}

Ra 2 link để kết nối với google colab, nhấn vào link -> đồng ý sẽ có mã để copy vào

  1. Tạo thư mục ảo kết nối với drive: !mkdir -p drive !google-drive-ocamlfuse drive

  2. Chọn thư mục cần đến: import os #Thư viện os để điều khiển đường dẫn trong thư mục os.chdir('drive/....') #Đưa đến thư mục cần đến, tính tại thư mục hiện tại os.chdir('..') #Đưa về thư mục trước os.getcwd() #Hiện thư đường dẫn thư mục hiện tại