配置一台高配置的电脑,比较昂贵,由于学习DeepLearning,需要调试程序,谷歌云就是一个不错的选择。
方法:
1、登录谷歌云端硬盘,注册账号。
2、新建Colaboratory文件new(用于编写调试程序的),更改设置为GPU模式。
3、在new界面通过三步关联自己谷歌云端路径:
1)第一步,输入以下代码,并运行。
期间会弹出两个网址,点击,并将运行结果复制回来相对应的位置。
!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