基本操作
- 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讀不到)root = 'drive/MyDrive/DFUC/Dataset'
train_path = root + '/DFUC2021_train/images'
train_csv_path = root + '/DFUC2021_train/train.csv'
train_update_csv = root + '/DFUC2021_train/train_update.csv'
test_path = root + '/DFUC2021_test'
執行共享程式需要掛接自己的Driver
from google.colab import drive
drive.mount('/content/drive')