0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

PytorchのStyleGANで顔画像を生成する方法です

そろそろStyleGANをいじってみたい

StyleGAN2の公式リポジトリはTensorFlow1。
Pytorchに変換して使ってみます。

stylegan2-pytorch

公式リポジトリとpytorchバージョンのリポジトリをクローンします。

オリジナルのチェックポイントファイルpklをpytorch形式に変換します。
事前トレーニング済みの重みは、アニメなどいろいろあります。

python convert_weight.py --repo ../stylegan2 {path_to_checkpoint.pkl}

Pytorchの重みptファイルと、オリジナルとpytorchバージョンの画像生成比較pngファイルが保存されます。

オリジナルと変換バージョンで同じ出力がされています。

8d032710-11a2-44b3-b9d9-83dd7d672cd0.png

変換された重みptで画像を生成します。

python generate.py --sample 1 --pics 1 --ckpt {converted_checkpoint_path.pt}

9ad3e037-03fd-4ccd-a32b-d6e24a23ba50.png

🐣


フリーランスエンジニアです。
お仕事のご相談こちらまで
rockyshikoku@gmail.com

Core MLやARKitを使ったアプリを作っています。
機械学習/AR関連の情報を発信しています。

Twitter
Medium

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?