加载云端硬盘
需要在左上角点击这个文件图标;
from google.colab import drive
drive.mount("/content/drive") # 挂载云端硬盘import os
path="/content/drive/MyDrive/TextClassificationCustom"
os.chdir(path) # 以路径path作为当前工作目录
os.listdir(path)current_working_directory = os.getcwd() # 显示当前工作目录
使用GPU
找到这个地方的笔记本设置
,选择GPU
运行.py文件
到达指定路径之后,运行如下命令:
!python main.py