colab使用trick

Posted Neil-Yale

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了colab使用trick相关的知识,希望对你有一定的参考价值。

colab使用github上的项目

import os
work_dir = “/content/TensorFlow-Tutorials/”
if not os.path.exists(work_dir):
!git clone https://github.com/Hvass-Labs/TensorFlow-Tutorials.git
os.chdir(work_dir)

切换1.x版本tensorflow

%tensorflow_version 1.x
import tensorflow as tf
tf.version

github直接用

!pip install git+https://github.com/Koukyosyumei/secure_ml

切换路径

使用!cd 是没用的
import os
os.chdir("/content/pylearn2")
在这里插入图片描述

以上是关于colab使用trick的主要内容,如果未能解决你的问题,请参考以下文章

Colab 的使用限制持续多长时间?

无法在 colab 中使用 gpu

colab使用自己的数据

Google Colab 使用易错总结

使用谷歌colab训练crnn模型

使用 Colab 的 TensorFlow 依赖项问题