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的主要内容,如果未能解决你的问题,请参考以下文章