基本操作

  1. google搜尋並打開colab
    2. 點擊左邊第四個檔案ICON
    3. 點擊檔案ICON中第三個文件夾形狀ICON,連接至你的GOOGLE DRIVE
    4. 使用 os.listdir(‘drive/MyDrive’) 可以看到DRIVE中的資料
    5. 編輯->筆記本設定 : 可以選擇使用CPU或GPU

    套件安裝指令

    keras:!pip install -q keras
    tensorflow-addons:!pip install -U tensorflow-addons

    注意事項

    路徑的輸入格式(似乎是有固定格式,因為在jupyter中使用的格式在Colab讀不到)
    1. root = 'drive/MyDrive/DFUC/Dataset'
    2. train_path = root + '/DFUC2021_train/images'
    3. train_csv_path = root + '/DFUC2021_train/train.csv'
    4. train_update_csv = root + '/DFUC2021_train/train_update.csv'
    5. test_path = root + '/DFUC2021_test'

執行共享程式需要掛接自己的Driver

  1. from google.colab import drive
  2. drive.mount('/content/drive')