本文主要是介绍没有GPU怎么办?Google colab大法好! 使用方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
一块GPU都没有怎么做深度学习?
买不起GPU的吃土少年,Google colab大法好,重点是-免费免费免费
1.新建init_run.ipynb
2.新建代码片段
!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}
3.根据URL验证
这篇关于没有GPU怎么办?Google colab大法好! 使用方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!