DragGAN 已经开源
地址:https://github.com/XingangPan/DragGAN
设备信息(笔记本):
系统 ubuntu 18.4
显卡 3080
步骤
1 clone 代码到本地
git clone https://github.com/XingangPan/DragGAN
进入到目录里
cd DragGAN
2 下载预先训练的 StyleGAN2 权重
sh scripts/download_model.sh
3 使用 conda 创建虚拟python环境并启用虚拟环境
创建环境
conda create -n DragGAN python=3.10
启用环境
source activate DragGAN
4 安装依赖
pip install -r requirements.txt
5 启动程序,就可以愉快的玩耍了
sh scripts/gui.sh
界面还是比较简单,操作也很容易上手
启动程序会提示依赖缺失问题,我遇到的写到下面,仅供参考
pip install imgui
pip install glfw
pip install pyOpenGL # 其实这个貌似不对
conda install -c anaconda pyopengl # 这个才对
pip install scipy