Colab运行GitHub代码
Posted huangyj
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Colab运行GitHub代码相关的知识,希望对你有一定的参考价值。
前提:代理选“德国”,稳定一点 ~
1. 将Colab与Good Drive关联起来
from google.colab import drive drive.mount(‘/content/drive‘)
2.定位到Drive的根目录,并查看根目录下的文件
import os os.chdir("/content/drive/My Drive") !ls
3.下载GitHub的代码到Drive
!git clone https://github.com/wadayama/TISTA.git
!ls
4. 切换到刚才下载项目的文件夹下
cd TISTA/
5.查看文件夹下所有文件
!ls
6.修改TensorFlow版本为1.X,Colab默认使用TensorFlow 2.X
%tensorflow_version 1.1 import tensorflow print(tensorflow.__version__)
7. 运行python程序
!python main.py
如何查看GPU?
!invidia-smi #查看GPU
在本地如何TensorFlow2.0下运行TensorFlow1.X版本的代码
import tensorflow as tf #-----修改为↓↓↓↓↓↓↓↓↓ import tensorflow.compat.v1 as tf tf.disable_v2_behavior()
参考:
https://blog.csdn.net/tan123456987321/article/details/104777049
colab+git clone+Google drive提速: https://blog.csdn.net/qq_42698608/article/details/104793387
以上是关于Colab运行GitHub代码的主要内容,如果未能解决你的问题,请参考以下文章
pip 安装了 google.colab,现在无法在 Jupyter 笔记本上运行代码