python 谷歌Colab
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 谷歌Colab相关的知识,希望对你有一定的参考价值。
pip install jupyter_http_over_ws
jupyter serverextension enable --py jupyter_http_over_ws
jupyter notebook --NotebookApp.allow_origin='https://colab.research.google.com' --port=8888 --NotebookApp.token='' --NotebookApp.disable_check_xsrf=True --NotebookApp.allow_origin="*"
from google.colab import drive
drive.mount('/content/drive/')
!ls "/content/drive/My Drive/"
#Download Titanic Dataset (.csv File) and Display First 5 Rows
!wget https://raw.githubusercontent.com/vincentarelbundock/Rdatasets/master/csv/datasets/Titanic.csv -P "/content/drive/My Drive/app"
以上是关于python 谷歌Colab的主要内容,如果未能解决你的问题,请参考以下文章
谷歌 Colab 存储
分享使用谷歌Colab 常用小tips(真的很有用)
使用谷歌colab训练crnn模型
谷歌colab中的包
模型甚至没有开始训练谷歌 Colab
python 谷歌Colab