谷歌Colaboraty是谷歌推出的 python 练习工具,因为提供 GPU 和可以连接谷歌硬盘,非常方便。下面介绍几个常用使用方法。
- 运行 github 上的项目
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19!git clone https://github.com/Puzer/stylegan-encoder.git
# 行首加上“!”就可以执行 linux 命令
# 把网盘文件复制到本地
from shutil import copyfile
copyfile('/content/drive/My Drive/source/file1', 'target/file1)
# 升级 tensorflow 版本
!pip install --upgrade tensorflow-gpu
# 降级 tensorflow
!pip uninstall tensorflow
!pip install tensorflow-gpu==1.15.3
# 执行文件
import os
os.chdir("stylegan-encoder")
!python train.py